1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-18 00:23:50 +03:00

r10366: More scons fixes. Building et, asn1, lex and yacc files sort-of works now

This commit is contained in:
Jelmer Vernooij
2005-09-20 22:10:40 +00:00
committed by Gerald (Jerry) Carter
parent 90f98e9be3
commit 22f18a8424
16 changed files with 137 additions and 106 deletions

View File

@@ -1,7 +1,12 @@
Import('hostenv')
Import('hostenv paths')
# tastes like -*- python -*-
Import('talloc basic popt_common popt param')
registry = hostenv.StaticLibrary('registry',
[basic,talloc,'common/reg_interface.c','common/reg_util.c'])
hostenv.Program('regtree', ['tools/regtree.c',registry,talloc,basic,popt_common,popt,param])
regtree = hostenv.Program('regtree', ['tools/regtree.c',registry,talloc,basic,popt_common,popt,param])
regshell = hostenv.Program('regshell', ['tools/regshell.c',registry,talloc,basic,popt_common,popt,param])
regpatch = hostenv.Program('regpatch', ['tools/regpatch.c',registry,talloc,basic,popt_common,popt,param])
regdiff = hostenv.Program('regdiff', ['tools/regdiff.c',registry,talloc,basic,popt_common,popt,param])
hostenv.Install(paths['BINDIR'], [regtree,regshell,regpatch,regdiff])