blob: 65aeb5b17a256fdd2cdb79246c35e24e2b2585f0 (
plain)
1
2
3
4
5
6
7
|
Import('hostenv')
# 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])
|