summaryrefslogtreecommitdiff
path: root/zlib/Jamfile
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-05-01 16:13:57 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-05-01 16:13:57 +0200
commit094535c010320967639e8e86f974d878e80baa72 (patch)
treeefc3094b20355dcbeebb2c4ece4fcfc69bffedb5 /zlib/Jamfile
parentc07d0c2d2f6f7b0eb6e92cc6204bf05037957e82 (diff)
Imported Upstream version 1.7.0upstream/1.7.0
Diffstat (limited to 'zlib/Jamfile')
-rw-r--r--zlib/Jamfile30
1 files changed, 30 insertions, 0 deletions
diff --git a/zlib/Jamfile b/zlib/Jamfile
new file mode 100644
index 0000000..554cd24
--- /dev/null
+++ b/zlib/Jamfile
@@ -0,0 +1,30 @@
+
+#PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on
+PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags
+PREF_LINKFLAGS = $(LINKDEBUGFLAG) ;
+
+Libraries = libz ;
+Executables = ;
+Headers = zlib.h ;
+
+# zlib library
+LIBSRCS =
+ adler32.c
+ compress.c
+ crc32.c
+ deflate.c
+ gzclose.c
+ gzlib.c
+ gzread.c
+ gzwrite.c
+ infback.c
+ inffast.c
+ inflate.c
+ inftrees.c
+ trees.c
+ uncompr.c
+ zutil.c
+ ;
+
+Library libz : $(LIBSRCS) ;
+