aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/uzlib/src/makefile.dj2
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/uzlib/src/makefile.dj2')
-rw-r--r--test/monniaux/uzlib/src/makefile.dj233
1 files changed, 33 insertions, 0 deletions
diff --git a/test/monniaux/uzlib/src/makefile.dj2 b/test/monniaux/uzlib/src/makefile.dj2
new file mode 100644
index 00000000..856ecfd6
--- /dev/null
+++ b/test/monniaux/uzlib/src/makefile.dj2
@@ -0,0 +1,33 @@
+##
+## tinflib - tiny inflate library (inflate, gzip, zlib)
+##
+## DJGPP makefile
+##
+## Copyright (c) 2003 by Joergen Ibsen / Jibz
+## All Rights Reserved
+##
+## http://www.ibsensoftware.com/
+##
+
+target = ../lib/libtinf.a
+objects = tinflate.o tinfgzip.o tinfzlib.o adler32.o crc32.o
+
+cflags = -s -Wall -Os -fomit-frame-pointer
+
+.PHONY: all clean
+
+all: $(target)
+
+$(target): $(objects)
+ $(RM) $@
+ ar -frsv $@ $^
+ ranlib $@
+
+%.o : %.c
+ gcc $(cflags) -o $@ -c $<
+
+%.o : %.nas
+ nasm -o $@ -f coff -O3 -Inasm/ $<
+
+clean:
+ $(RM) $(objects) $(target)