/[ascend]/trunk/mmio/SConscript
ViewVC logotype

Contents of /trunk/mmio/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1678 - (show annotations) (download)
Wed Dec 19 00:29:48 2007 UTC (15 years, 3 months ago) by jpye
File size: 231 byte(s)
Removed references to MFGRAPH, seems better to use GraphViz directly.
Added configuration test for GraphViz.
Added configuration test for strdup, fixed mmio to not create its own strdup if other form is available already.

1 Import('env')
2 mmio_env = env.Copy()
3
4 if env.get('HAVE_STRDUP'):
5 mmio_env.Append(CPPDEFINES=['HAVE_STRDUP'])
6
7 srcs = Split("""
8 mmio.c
9 """)
10
11 mmio = []
12 for src in srcs:
13 mmio.append(mmio_env.SharedObject(src))
14
15 Return('mmio')

john.pye@anu.edu.au
ViewVC Help
Powered by ViewVC 1.1.22