aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/uzlib/examples/tgunzip/makefile.b32
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/uzlib/examples/tgunzip/makefile.b32')
-rw-r--r--test/monniaux/uzlib/examples/tgunzip/makefile.b3231
1 files changed, 31 insertions, 0 deletions
diff --git a/test/monniaux/uzlib/examples/tgunzip/makefile.b32 b/test/monniaux/uzlib/examples/tgunzip/makefile.b32
new file mode 100644
index 00000000..7b559c9a
--- /dev/null
+++ b/test/monniaux/uzlib/examples/tgunzip/makefile.b32
@@ -0,0 +1,31 @@
+##
+## tgunzip - gzip decompressor example
+##
+## Borland C/C++ makefile (GNU Make)
+##
+## Copyright (c) 2003 by Joergen Ibsen / Jibz
+## All Rights Reserved
+##
+## http://www.ibsensoftware.com/
+##
+
+target = tgunzip.exe
+objects = tgunzip.obj
+libs = ..\..\lib\tinf.lib
+temps = tgunzip.tds
+
+cflags = -a16 -K -O2 -OS -I..\..\src
+ldflags = -C -q -Gn -x -Gz -ap -Tpe
+
+.PHONY: all clean
+
+all: $(target)
+
+$(target): $(objects)
+ ilink32 $(ldflags) c0x32 $(objects), $@ , , import32 cw32 $(libs) , ,
+
+%.obj : %.c
+ bcc32 $(cflags) -c $<
+
+clean:
+ $(RM) $(objects) $(target) $(temps)