76 lines
2.1 KiB
Makefile
76 lines
2.1 KiB
Makefile
|
# Makefile for zlib
|
||
|
# Copyright (C) 1995 Jean-loup Gailly.
|
||
|
# For conditions of distribution and use, see copyright notice in zlib.h
|
||
|
|
||
|
# Modified slightly for QNX by Chris Herborth (chrish@qnx.com)
|
||
|
|
||
|
CC=cc
|
||
|
CFLAGS=-4 -O -Q
|
||
|
#use -O3 for gcc to take advantage of inlining
|
||
|
#CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
|
||
|
#CFLAGS=-g -DDEBUG
|
||
|
LDFLAGS=-L. -lz
|
||
|
|
||
|
#RANLIB=ranlib
|
||
|
|
||
|
prefix=/usr/local
|
||
|
|
||
|
OBJS = adler32.o compress.o crc32.o gzio.o uncompr.o deflate.o trees.o \
|
||
|
zutil.o inflate.o infblock.o inftrees.o infcodes.o infutil.o inffast.o
|
||
|
|
||
|
TEST_OBJS = example.o minigzip.o
|
||
|
|
||
|
all: example minigzip
|
||
|
|
||
|
test: all
|
||
|
./example
|
||
|
echo hello world | ./minigzip | ./minigzip -d
|
||
|
|
||
|
install: zlib.lib
|
||
|
-@mkdir $(prefix)/include
|
||
|
-@mkdir $(prefix)/lib
|
||
|
cp zlib.h zconf.h $(prefix)/include
|
||
|
chmod 644 $(prefix)/include/zlib.h $(prefix)/include/zconf.h
|
||
|
cp zlib.lib $(prefix)/lib
|
||
|
chmod 644 $(prefix)/lib/zlib.lib
|
||
|
|
||
|
zlib.lib: $(OBJS)
|
||
|
cc -A $@ $(OBJS)
|
||
|
# ar rc $@ $(OBJS)
|
||
|
# $(RANLIB) $@
|
||
|
|
||
|
example: example.o zlib.lib
|
||
|
$(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)
|
||
|
|
||
|
minigzip: minigzip.o zlib.lib
|
||
|
$(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
|
||
|
|
||
|
clean:
|
||
|
rm -f *.o example minigzip zlib.lib foo.gz
|
||
|
|
||
|
zip:
|
||
|
zip -ul9 zlib README ChangeLog Makefile Makefile.??? Makefile.?? *.[ch]
|
||
|
|
||
|
tgz:
|
||
|
cd ..; tar cfz zlib/zlib.tgz zlib/README zlib/ChangeLog zlib/Makefile \
|
||
|
zlib/Makefile.??? zlib/Makefile.?? zlib/*.[ch]
|
||
|
|
||
|
# DO NOT DELETE THIS LINE -- make depend depends on it.
|
||
|
|
||
|
adler32.o: zutil.h zlib.h zconf.h
|
||
|
compress.o: zlib.h zconf.h
|
||
|
crc32.o: zutil.h zlib.h zconf.h
|
||
|
deflate.o: deflate.h zutil.h zlib.h zconf.h
|
||
|
example.o: zlib.h zconf.h
|
||
|
gzio.o: zutil.h zlib.h zconf.h
|
||
|
infblock.o: zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h
|
||
|
infcodes.o: zutil.h zlib.h zconf.h inftrees.h infutil.h infcodes.h inffast.h
|
||
|
inffast.o: zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.h
|
||
|
inflate.o: zutil.h zlib.h zconf.h infblock.h
|
||
|
inftrees.o: zutil.h zlib.h zconf.h inftrees.h
|
||
|
infutil.o: zutil.h zlib.h zconf.h inftrees.h infutil.h
|
||
|
minigzip.o: zlib.h zconf.h
|
||
|
trees.o: deflate.h zutil.h zlib.h zconf.h
|
||
|
uncompr.o: zlib.h zconf.h
|
||
|
zutil.o: zutil.h zlib.h zconf.h
|