/[escript]/trunk/tools/mmio/src/SConscript
ViewVC logotype

Annotation of /trunk/tools/mmio/src/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 352 - (hide annotations)
Wed Dec 14 02:21:37 2005 UTC (17 years, 3 months ago) by jgs
File size: 417 byte(s)
turns out Install() targets should also be made Default()
targets if you want them to actually reliably work!

1 jgs 179 Import('*')
2    
3     import os
4 jgs 190 import string
5 jgs 179
6 jgs 190 mmio_path = str(esysroot) + '/tools/mmio/inc'
7 jgs 179
8 jgs 190 cpp_path = [mmio_path]
9    
10 jgs 179 lib = 'mmio'
11     sources = ['mmio.c']
12    
13     mmio_env = Environment(ENV = os.environ)
14    
15 jgs 223 mmio_env.Replace(CC = cc)
16 jgs 179 mmio_env.Replace(CCFLAGS = cc_flags)
17 jgs 225 mmio_env.Replace(ARFLAGS = ar_flags)
18 jgs 179 mmio_env.Replace(CPPPATH = cpp_path)
19    
20     mmio_lib = mmio_env.StaticLibrary(lib, sources)
21 jgs 352
22     Default(mmio_env.Install(libdir, mmio_lib))

  ViewVC Help
Powered by ViewVC 1.1.26