zlib/win32/Makefile.bor

110 lines
2.4 KiB
Makefile
Raw Normal View History

2011-09-10 10:21:57 +04:00
# Makefile for zlib
# Borland C++ for Win32
2011-09-10 10:22:37 +04:00
#
# Usage:
# make -f win32/Makefile.bor
# ------------ Borland C++ ------------
# Optional nonstandard preprocessor flags (e.g. -DMAX_MEM_LEVEL=7)
# should be added to the environment via "set LOCAL_ZLIB=-DFOO" or
# added to the declaration of LOC here:
2011-09-10 10:21:57 +04:00
LOC = $(LOCAL_ZLIB)
CC = bcc32
2011-09-10 10:22:37 +04:00
AS = bcc32
2011-09-10 10:21:57 +04:00
LD = bcc32
AR = tlib
2011-09-10 10:22:37 +04:00
CFLAGS = -a -d -k- -O2 $(LOC)
ASFLAGS = $(LOC)
2011-09-10 10:21:57 +04:00
LDFLAGS = $(LOC)
# variables
ZLIB_LIB = zlib.lib
2011-09-10 10:27:26 +04:00
OBJ1 = adler32.obj compress.obj crc32.obj deflate.obj gzclose.obj gzlib.obj gzread.obj
2011-09-10 10:26:49 +04:00
OBJ2 = gzwrite.obj infback.obj inffast.obj inflate.obj inftrees.obj trees.obj uncompr.obj zutil.obj
2011-09-10 10:22:37 +04:00
#OBJA =
2011-09-10 10:27:26 +04:00
OBJP1 = +adler32.obj+compress.obj+crc32.obj+deflate.obj+gzclose.obj+gzlib.obj+gzread.obj
2011-09-10 10:26:49 +04:00
OBJP2 = +gzwrite.obj+infback.obj+inffast.obj+inflate.obj+inftrees.obj+trees.obj+uncompr.obj+zutil.obj
2011-09-10 10:22:37 +04:00
#OBJPA=
2011-09-10 10:21:57 +04:00
# targets
all: $(ZLIB_LIB) example.exe minigzip.exe
.c.obj:
2011-09-10 10:22:37 +04:00
$(CC) -c $(CFLAGS) $<
.asm.obj:
$(AS) -c $(ASFLAGS) $<
2011-09-10 10:21:57 +04:00
adler32.obj: adler32.c zlib.h zconf.h
compress.obj: compress.c zlib.h zconf.h
crc32.obj: crc32.c zlib.h zconf.h crc32.h
deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h
2011-09-10 10:26:49 +04:00
gzclose.obj: gzclose.c zlib.h zconf.h gzguts.h
gzlib.obj: gzlib.c zlib.h zconf.h gzguts.h
gzread.obj: gzread.c zlib.h zconf.h gzguts.h
gzwrite.obj: gzwrite.c zlib.h zconf.h gzguts.h
2011-09-10 10:21:57 +04:00
infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
inffast.h inffixed.h
inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
inffast.h
inflate.obj: inflate.c zutil.h zlib.h zconf.h inftrees.h inflate.h \
inffast.h inffixed.h
inftrees.obj: inftrees.c zutil.h zlib.h zconf.h inftrees.h
trees.obj: trees.c zutil.h zlib.h zconf.h deflate.h trees.h
uncompr.obj: uncompr.c zlib.h zconf.h
zutil.obj: zutil.c zutil.h zlib.h zconf.h
example.obj: test/example.c zlib.h zconf.h
2011-09-10 10:21:57 +04:00
minigzip.obj: test/minigzip.c zlib.h zconf.h
2011-09-10 10:21:57 +04:00
# For the sake of the old Borland make,
# the command line is cut to fit in the MS-DOS 128 byte limit:
2011-09-10 10:22:37 +04:00
$(ZLIB_LIB): $(OBJ1) $(OBJ2) $(OBJA)
2011-09-10 10:21:57 +04:00
-del $(ZLIB_LIB)
$(AR) $(ZLIB_LIB) $(OBJP1)
$(AR) $(ZLIB_LIB) $(OBJP2)
2011-09-10 10:22:37 +04:00
$(AR) $(ZLIB_LIB) $(OBJPA)
# testing
test: example.exe minigzip.exe
example
echo hello world | minigzip | minigzip -d
2011-09-10 10:21:57 +04:00
example.exe: example.obj $(ZLIB_LIB)
$(LD) $(LDFLAGS) example.obj $(ZLIB_LIB)
minigzip.exe: minigzip.obj $(ZLIB_LIB)
$(LD) $(LDFLAGS) minigzip.obj $(ZLIB_LIB)
2011-09-10 10:22:37 +04:00
# cleanup
2011-09-10 10:21:57 +04:00
clean:
2011-09-10 10:25:27 +04:00
-del $(ZLIB_LIB)
2011-09-10 10:21:57 +04:00
-del *.obj
2011-09-10 10:22:37 +04:00
-del *.exe
2011-09-10 10:21:57 +04:00
-del *.tds
-del zlib.bak
-del foo.gz