aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/uzlib/src/makefile.mgw
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/uzlib/src/makefile.mgw')
-rw-r--r--test/monniaux/uzlib/src/makefile.mgw31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/monniaux/uzlib/src/makefile.mgw b/test/monniaux/uzlib/src/makefile.mgw
new file mode 100644
index 00000000..020f1853
--- /dev/null
+++ b/test/monniaux/uzlib/src/makefile.mgw
@@ -0,0 +1,31 @@
+##
+## tinflib - tiny inflate library (inflate, gzip, zlib)
+##
+## MinGW / Cygwin makefile
+##
+## Copyright (c) 2003 by Joergen Ibsen / Jibz
+## All Rights Reserved
+##
+
+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 win32 -O3 -Inasm/ $<
+
+clean:
+ $(RM) $(target) $(objects)