diff options
author | Kenneth Graunke <[email protected]> | 2011-01-24 10:35:48 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2011-01-31 10:17:10 -0800 |
commit | 8aac5d123c4636fad5e9d70c3a6706aaa6f1f240 (patch) | |
tree | 27618281c2761dc2fcbc6ec85d2d7383e6bada24 /src/talloc/SConscript | |
parent | d1d8120545b0bd2f7ec48c5f03c77b967b082e04 (diff) |
Remove talloc from the SCons build system.
Diffstat (limited to 'src/talloc/SConscript')
-rw-r--r-- | src/talloc/SConscript | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/talloc/SConscript b/src/talloc/SConscript deleted file mode 100644 index 3bf7029bb25..00000000000 --- a/src/talloc/SConscript +++ /dev/null @@ -1,20 +0,0 @@ -Import('*') - -if env['platform'] != 'windows': - Return() - -env = env.Clone() - -talloc = env.SharedLibrary( - target = 'talloc', - source = ['talloc.c', 'talloc.def'], -) - -env.InstallSharedLibrary(talloc) - -if env['platform'] == 'windows': - talloc = env.FindIxes(talloc, 'LIBPREFIX', 'LIBSUFFIX') -else: - talloc = env.FindIxes(talloc, 'SHLIBPREFIX', 'SHLIBSUFFIX') - -Export('talloc') |