summaryrefslogtreecommitdiff
path: root/zlib/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'zlib/Jamfile')
-rw-r--r--zlib/Jamfile30
1 files changed, 0 insertions, 30 deletions
diff --git a/zlib/Jamfile b/zlib/Jamfile
deleted file mode 100644
index 554cd24..0000000
--- a/zlib/Jamfile
+++ /dev/null
@@ -1,30 +0,0 @@
-
-#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) ;
-