1 |
Import('libascend_env') |
2 |
|
3 |
csrcs = Split(""" |
4 |
anoncopy.c anonmerg.c anontype.c arrayinst.c ascCompiler.c |
5 |
atomsize.c atomvalue.c bintoken.c bit.c braced.c |
6 |
case.c check.c child.c childdef.c childio.c childinfo.c cmpfunc.c |
7 |
commands.c copyinst.c createinst.c destroyinst.c |
8 |
dimen.c dimen_io.c dump.c |
9 |
evaluate.c exprio.c exprs.c exprsym.c extcall.c |
10 |
extfunc.c extinst.c find.c forvars.c fractions.c |
11 |
freestore.c func.c initialize.c instance_io.c |
12 |
instantiate.c instmacro.c instquery.c |
13 |
library.c linkinst.c logrel_io.c logrel_util.c |
14 |
logrelation.c mathinst.c mergeinst.c module.c name.c |
15 |
nameio.c notate.c numlist.c parentchild.c |
16 |
parpend.c pending.c plot.c proc.c procframe.c |
17 |
procio.c prototype.c qlfdid.c refineinst.c rel_common.c relation.c |
18 |
relation_io.c relation_util.c rootfind.c safe.c |
19 |
select.c setinst_io.c setinstval.c setio.c |
20 |
sets.c slist.c simlist.c statement.c statio.c switch.c |
21 |
symtab.c syntax.c temp.c tmpnum.c type_desc.c |
22 |
type_descio.c typedef.c typelint.c redirectFile.c |
23 |
units.c universal.c |
24 |
value_type.c visitinst.c visitlink.c vlist.c vlistio.c |
25 |
watchpt.c watchptio.c when.c when_io.c when_util.c |
26 |
""") |
27 |
|
28 |
import platform, glob |
29 |
|
30 |
scanparse_env = libascend_env.Copy() |
31 |
|
32 |
scanparse_env.Append(CCFLAGS=scanparse_env.get('YACC_CCFLAGS')) |
33 |
|
34 |
if scanparse_env.has_key('HAVE_YACC'): |
35 |
parsersource = 'ascParse.y' |
36 |
parserheader = 'ascParse.h' |
37 |
else: |
38 |
parsersource = 'ascParse_no_yacc.c' |
39 |
parserheader = libascend_env.Command('ascParse.h', 'ascParse_no_yacc.h',Copy('$TARGET', '$SOURCE')) |
40 |
|
41 |
if scanparse_env.has_key('HAVE_LEX'): |
42 |
scannersource = 'scanner.l' |
43 |
else: |
44 |
scannersource = 'scanner_no_flex.c' |
45 |
|
46 |
parser = scanparse_env.SharedObject(target=['ascParse'], source=parsersource |
47 |
, YACCFLAGS=['-y','-d','-pzz_'] |
48 |
) |
49 |
|
50 |
scanner = libascend_env.SharedObject(target=['scanner'],source=scannersource |
51 |
, LEXFLAGS=['-l','-Pzz_'] |
52 |
) |
53 |
|
54 |
packages_env = libascend_env.Copy() |
55 |
packages_env.Append(CPPDEFINES=[('ASC_SHLIBSUFFIX','\\"'+libascend_env['SHLIBSUFFIX']+'\\"'),('ASC_SHLIBPREFIX','\\"'+libascend_env['SHLIBPREFIX']+'\\"')]) |
56 |
packages = packages_env.SharedObject('packages.c') |
57 |
|
58 |
objs = [parser,scanner,packages] |
59 |
|
60 |
# SLOPPY sources. This is a painful hack that should be fixed using 'config.h' style solution. |
61 |
|
62 |
sloppy_csrcs = ['rounded.c','interval.c'] |
63 |
|
64 |
sloppy_env = libascend_env.Copy() |
65 |
sloppy_env.Append(CPPDEFINES=['SLOPPY']); |
66 |
for s in sloppy_csrcs: |
67 |
objs += sloppy_env.SharedObject(s) |
68 |
|
69 |
libascend_env.Depends(scanner,[parserheader]) |
70 |
|
71 |
for s in [csrcs]: |
72 |
objs += libascend_env.SharedObject(s) |
73 |
|
74 |
#-------------------- |
75 |
# INSTALL |
76 |
|
77 |
if libascend_env.get('CAN_INSTALL'): |
78 |
installdir = libascend_env['INSTALL_ROOT']+libascend_env['INSTALL_INCLUDE']+'/compiler' |
79 |
|
80 |
headers = glob.glob("*.h") |
81 |
libascend_env.InstallHeader(installdir,headers) |
82 |
|
83 |
Return('objs') |
84 |
|
85 |
# vim: set syntax=python: |
86 |
|