blob: 6768cbb5c7ee6b6e7034d688b59d3814f0f4715c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Import('*')
env = env.Clone()
softpipe = env.ConvenienceLibrary(
target = 'softpipe',
source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
)
env.Alias('softpipe', softpipe)
Export('softpipe')
|