Last change
on this file since 3282 was
3282,
checked in by jack, 19 years ago
|
SCons script files now support all the files that compile_all.py does.
|
File size:
288 bytes
|
Line | |
---|
1 | Import('env') |
---|
2 | env2 = env.Copy() |
---|
3 | |
---|
4 | try: |
---|
5 | env2['CPPDEFINES'] += [('TRILIBRARY', 1), ('NO_TIMER', 1)] |
---|
6 | except KeyError: |
---|
7 | env2['CPPDEFINES'] = [('TRILIBRARY', 1), ('NO_TIMER', 1)] |
---|
8 | |
---|
9 | env2.SharedLibrary('triang', ['triangle.c', 'triang.c']) |
---|
10 | env2.SharedLibrary('triangle', ['triangle.c']) |
---|
11 | |
---|
12 | |
---|
13 | |
---|
Note: See
TracBrowser
for help on using the repository browser.