File: SConscript

package info (click to toggle)
librcsb-core-wrapper 1.005-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 16,504 kB
  • sloc: xml: 122,915; cpp: 25,250; ansic: 3,736; makefile: 1,032; sh: 772; lex: 294; yacc: 235; perl: 213; python: 121; csh: 30
file content (39 lines) | stat: -rw-r--r-- 1,023 bytes parent folder | download | duplicates (6)
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
#
# SConscript for regex-v2.2
# Created: Aug 16, 2006 - Jdw
# Updated: Aug 23, 2006 - Jdw
#             Add object install
#          Mar 30, 2011 - jdw clone environment -
##
Import('env')
env=env.Clone()
#
#if (len(env.subst('$MYDEBUG')) > 0):
#	dict = env.Dictionary()
#	for k,v in dict.items():
#		print  k, " = ", str(v)
#
libName = 'regex'
libSrcList =['src/regcomp.c',
            'src/regexec.c',
            'src/regerror.c',
            'src/regfree.c']

libObjList = [s.replace('.c','.o') for s in libSrcList] 
libIncList =['include/regex.h']

myLib=env.Library(libName,libSrcList)
#
#
env.Install(env.subst('$MY_LIB_INSTALL_PATH'),myLib)
env.Alias('install-lib',env.subst('$MY_LIB_INSTALL_PATH'))
#
env.Install(env.subst('$MY_INCLUDE_INSTALL_PATH'),libIncList)
env.Alias('install-include',env.subst('$MY_INCLUDE_INSTALL_PATH'))
#
env.Install(env.subst('$MY_OBJ_INSTALL_PATH'),libObjList)
env.Alias('install-obj',env.subst('$MY_OBJ_INSTALL_PATH'))
#
env.Default('install-lib','install-include','install-obj')

#