Created
August 5, 2010 01:33
-
-
Save jrossi/509083 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| #from waflib.Configure import conf | |
| def build(ctx): | |
| for i in ctx.path.ant_glob("*.c"): | |
| print "- %s"%(i) | |
| ctx.stlib( | |
| source = ctx.path.ant_glob("*.c"), | |
| include = ".", | |
| export_incdirs = ".", | |
| target = "z", | |
| name='zlib-static', | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment