-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathMakefile.conf.in
68 lines (57 loc) · 1.88 KB
/
Makefile.conf.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# @?libs/tty/readline/cflags@
put /local/xschem/cflags [@
@cc/cflags@
@?libs/sul/libjpeg/cflags@
@?libs/gui/cairo/cflags@
@?libs/gui/xrender/cflags@
@?libs/gui/xcb/cflags@
@?libs/gui/xcb_render/cflags@
@?libs/gui/xgetxcbconnection/cflags@
@libs/gui/xpm/cflags@
@libs/script/tk/cflags@
@libs/script/tcl/cflags@
@]
# @?libs/tty/readline/ldflags@
put /local/xschem/ldflags [@
@cc/ldflags@
-lm
@?libs/sul/libjpeg/ldflags@
@?libs/gui/cairo/ldflags@
@?libs/gui/xrender/ldflags@
@?libs/gui/xcb/ldflags@
@?libs/gui/xcb_render/ldflags@
@?libs/gui/xgetxcbconnection/ldflags@
@libs/gui/xpm/ldflags@
@libs/script/tk/ldflags@
@libs/script/tcl/ldflags@
@]
uniq /local/xschem/cflags
uniq /local/xschem/ldflags
gsub /local/xschem/cflags {\n} { }
gsub /local/xschem/ldflags {\n} { }
print [@###############################################################
# Generated by scconfig - DO NOT EDIT - will be overwritten #
# Source: Makefile.conf.in; to regenerate run ./configure #
###############################################################
PREFIX=@/local/xschem/prefix@
CC=@cc/cc@
CFLAGS=@/local/xschem/cflags@
LDFLAGS=@/local/xschem/ldflags@
BINDIR=$(DESTDIR)$(install_root)$(PREFIX)/bin
SHAREDIR=$(DESTDIR)$(install_root)$(PREFIX)/share
DOCDIR=$(DESTDIR)$(install_root)$(PREFIX)/share/doc
XSHAREDIR=$(SHAREDIR)/xschem
XDOCDIR=$(DOCDIR)/xschem
MANDIR=$(SHAREDIR)/man
USER_CONF_DIR=@/local/xschem/user-conf-dir@
SCCBOX=$(ROOT)/scconfig/sccbox
## specify user schematic/symbol libraries;
## you may redefine it later in .xschem or xschemrc startup files
user_library_dir=@/local/xschem/user-lib-path@
## specify system-wide symbol libraries;
## you may redefine it later in ~/.xschem/xschemrc or
## `pwd`/.xschemrc startup files
system_library_dir=$(DESTDIR)$(install_root)@/local/xschem/sys-lib-path@
## default search path
xschem_library_path=@/local/xschem/xschem-lib-path@
@]