summaryrefslogtreecommitdiff
path: root/png/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'png/Jamfile')
-rw-r--r--png/Jamfile32
1 files changed, 32 insertions, 0 deletions
diff --git a/png/Jamfile b/png/Jamfile
new file mode 100644
index 0000000..def7495
--- /dev/null
+++ b/png/Jamfile
@@ -0,0 +1,32 @@
+
+#PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on
+PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags
+PREF_LINKFLAGS = $(LINKDEBUGFLAG) ;
+
+Libraries = libpng ;
+Executables = ;
+Headers = png.h ;
+
+HDRS = $(ZINC) ;
+
+# png library
+LIBSRCS =
+ png.c
+ pngerror.c
+ pngget.c
+ pngmem.c
+ pngpread.c
+ pngread.c
+ pngrio.c
+ pngrtran.c
+ pngrutil.c
+ pngset.c
+ pngtrans.c
+ pngwio.c
+ pngwrite.c
+ pngwtran.c
+ pngwutil.c
+ ;
+
+Library libpng : $(LIBSRCS) ;
+