13 lines
208 B
Python
13 lines
208 B
Python
|
#!/usr/bin/python
|
||
|
import lutinModule
|
||
|
|
||
|
def Create(target):
|
||
|
myModule = lutinModule.module(__file__, 'z', 'PREBUILD')
|
||
|
|
||
|
myModule.AddExportflag_LD('-lz')
|
||
|
|
||
|
# add the currrent module at the
|
||
|
return myModule
|
||
|
|
||
|
|