summaryrefslogtreecommitdiff
path: root/Build/source/libs/zlib/zlib-1.2.7/msdos/Makefile.emx
diff options
context:
space:
mode:
authorPeter Breitenlohner <peb@mppmu.mpg.de>2012-05-03 09:57:48 +0000
committerPeter Breitenlohner <peb@mppmu.mpg.de>2012-05-03 09:57:48 +0000
commit68a8049ab510304d79ee4411961a8bc746be2324 (patch)
tree7a267adb26547ad7d25890d9a4c65e55c6dcc7ca /Build/source/libs/zlib/zlib-1.2.7/msdos/Makefile.emx
parent355b3d52bfeeb06840260411d95f39557ccb529b (diff)
zlib 1.2.7
git-svn-id: svn://tug.org/texlive/trunk@26181 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs/zlib/zlib-1.2.7/msdos/Makefile.emx')
-rw-r--r--Build/source/libs/zlib/zlib-1.2.7/msdos/Makefile.emx69
1 files changed, 69 insertions, 0 deletions
diff --git a/Build/source/libs/zlib/zlib-1.2.7/msdos/Makefile.emx b/Build/source/libs/zlib/zlib-1.2.7/msdos/Makefile.emx
new file mode 100644
index 00000000000..9c1b57a5857
--- /dev/null
+++ b/Build/source/libs/zlib/zlib-1.2.7/msdos/Makefile.emx
@@ -0,0 +1,69 @@
+# Makefile for zlib. Modified for emx 0.9c by Chr. Spieler, 6/17/98.
+# Copyright (C) 1995-1998 Jean-loup Gailly.
+# For conditions of distribution and use, see copyright notice in zlib.h
+
+# To compile, or to compile and test, type:
+#
+# make -fmakefile.emx; make test -fmakefile.emx
+#
+
+CC=gcc
+
+#CFLAGS=-MMD -O
+#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
+#CFLAGS=-MMD -g -DDEBUG
+CFLAGS=-MMD -O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
+ -Wstrict-prototypes -Wmissing-prototypes
+
+# If cp.exe is available, replace "copy /Y" with "cp -fp" .
+CP=copy /Y
+# If gnu install.exe is available, replace $(CP) with ginstall.
+INSTALL=$(CP)
+# The default value of RM is "rm -f." If "rm.exe" is found, comment out:
+RM=del
+LDLIBS=-L. -lzlib
+LD=$(CC) -s -o
+LDSHARED=$(CC)
+
+INCL=zlib.h zconf.h
+LIBS=zlib.a
+
+AR=ar rcs
+
+prefix=/usr/local
+exec_prefix = $(prefix)
+
+OBJS = adler32.o compress.o crc32.o gzclose.o gzlib.o gzread.o gzwrite.o \
+ uncompr.o deflate.o trees.o zutil.o inflate.o infback.o inftrees.o inffast.o
+
+TEST_OBJS = example.o minigzip.o
+
+all: example.exe minigzip.exe
+
+test: all
+ ./example
+ echo hello world | .\minigzip | .\minigzip -d
+
+%.o : %.c
+ $(CC) $(CFLAGS) -c $< -o $@
+
+zlib.a: $(OBJS)
+ $(AR) $@ $(OBJS)
+
+%.exe : %.o $(LIBS)
+ $(LD) $@ $< $(LDLIBS)
+
+
+.PHONY : clean
+
+clean:
+ $(RM) *.d
+ $(RM) *.o
+ $(RM) *.exe
+ $(RM) zlib.a
+ $(RM) foo.gz
+
+DEPS := $(wildcard *.d)
+ifneq ($(DEPS),)
+include $(DEPS)
+endif