zlib/msdos/Makefile.dj2

105 lines
2.5 KiB
Makefile
Raw Normal View History

2011-09-10 10:14:39 +04:00
# Makefile for zlib. Modified for djgpp v2.0 by F. J. Donahoe, 3/15/96.
2011-09-10 10:17:33 +04:00
# Copyright (C) 1995-1998 Jean-loup Gailly.
2011-09-10 10:22:37 +04:00
# For conditions of distribution and use, see copyright notice in zlib.h
2011-09-10 10:14:39 +04:00
2011-09-10 10:15:17 +04:00
# To compile, or to compile and test, type:
2011-09-10 10:22:37 +04:00
#
2011-09-10 10:14:39 +04:00
# make -fmakefile.dj2; make test -fmakefile.dj2
2011-09-10 10:22:37 +04:00
#
2011-09-10 10:14:39 +04:00
# To install libz.a, zconf.h and zlib.h in the djgpp directories, type:
2011-09-10 10:22:37 +04:00
#
2011-09-10 10:14:39 +04:00
# make install -fmakefile.dj2
2011-09-10 10:22:37 +04:00
#
2011-09-10 10:15:17 +04:00
# after first defining LIBRARY_PATH and INCLUDE_PATH in djgpp.env as
# in the sample below if the pattern of the DJGPP distribution is to
# be followed. Remember that, while <sp>'es around <=> are ignored in
# makefiles, they are *not* in batch files or in djgpp.env.
# - - - - -
# [make]
# INCLUDE_PATH=%\>;INCLUDE_PATH%%\DJDIR%\include
# LIBRARY_PATH=%\>;LIBRARY_PATH%%\DJDIR%\lib
# BUTT=-m486
# - - - - -
# Alternately, these variables may be defined below, overriding the values
# in djgpp.env, as
2011-09-10 10:17:33 +04:00
# INCLUDE_PATH=c:\usr\include
# LIBRARY_PATH=c:\usr\lib
2011-09-10 10:14:39 +04:00
CC=gcc
#CFLAGS=-MMD -O
#CFLAGS=-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7
#CFLAGS=-MMD -g -DZLIB_DEBUG
CFLAGS=-MMD -O3 $(BUTT) -Wall -Wwrite-strings -Wpointer-arith \
2011-09-10 10:15:17 +04:00
-Wstrict-prototypes -Wmissing-prototypes
2011-09-10 10:17:33 +04:00
# 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
2011-09-10 10:14:39 +04:00
LDLIBS=-L. -lz
LD=$(CC) -s -o
LDSHARED=$(CC)
2011-09-10 10:15:17 +04:00
INCL=zlib.h zconf.h
2011-09-10 10:14:39 +04:00
LIBS=libz.a
AR=ar rcs
prefix=/usr/local
exec_prefix = $(prefix)
2011-09-10 10:27:26 +04:00
OBJS = adler32.o compress.o crc32.o gzclose.o gzlib.o gzread.o gzwrite.o \
2011-09-10 10:26:49 +04:00
uncompr.o deflate.o trees.o zutil.o inflate.o infback.o inftrees.o inffast.o
2011-09-10 10:22:37 +04:00
OBJA =
# to use the asm code: make OBJA=match.o
2011-09-10 10:14:39 +04:00
TEST_OBJS = example.o minigzip.o
all: example.exe minigzip.exe
2011-09-10 10:22:37 +04:00
check: test
2011-09-10 10:14:39 +04:00
test: all
./example
2011-09-10 10:22:37 +04:00
echo hello world | .\minigzip | .\minigzip -d
2011-09-10 10:14:39 +04:00
%.o : %.c
$(CC) $(CFLAGS) -c $< -o $@
2011-09-10 10:22:37 +04:00
libz.a: $(OBJS) $(OBJA)
$(AR) $@ $(OBJS) $(OBJA)
2011-09-10 10:14:39 +04:00
%.exe : %.o $(LIBS)
$(LD) $@ $< $(LDLIBS)
2011-09-10 10:15:17 +04:00
# INCLUDE_PATH and LIBRARY_PATH were set for [make] in djgpp.env .
.PHONY : uninstall clean
2011-09-10 10:14:39 +04:00
2011-09-10 10:15:17 +04:00
install: $(INCL) $(LIBS)
-@if not exist $(INCLUDE_PATH)\nul mkdir $(INCLUDE_PATH)
-@if not exist $(LIBRARY_PATH)\nul mkdir $(LIBRARY_PATH)
2011-09-10 10:17:33 +04:00
$(INSTALL) zlib.h $(INCLUDE_PATH)
$(INSTALL) zconf.h $(INCLUDE_PATH)
$(INSTALL) libz.a $(LIBRARY_PATH)
2011-09-10 10:14:39 +04:00
uninstall:
2011-09-10 10:17:33 +04:00
$(RM) $(INCLUDE_PATH)\zlib.h
$(RM) $(INCLUDE_PATH)\zconf.h
$(RM) $(LIBRARY_PATH)\libz.a
2011-09-10 10:14:39 +04:00
clean:
2011-09-10 10:17:33 +04:00
$(RM) *.d
$(RM) *.o
$(RM) *.exe
$(RM) libz.a
$(RM) foo.gz
2011-09-10 10:14:39 +04:00
DEPS := $(wildcard *.d)
ifneq ($(DEPS),)
include $(DEPS)
endif