home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-07-07 | 438 b | 11 lines |
- # Very simple makefile for GZIP v0.6 Atari.
- # If you want to build GZIP for a normal TOS-filesystem then you should
- # add "-DNO_SYMLINK -DNO_MULTIPLE_DOTS -DNO_CHOWN" to CFLAGS.
-
- CC = gcc
- CFLAGS = -O2 -D__STDC__ -DSTDC_HEADERS -DDIRENT -DHAVE_UNISTD_H -DUTIME -DNEED_MEMORY_H -DHAVE_STRING_H
- OBJS = gzip.o zip.o deflate.o trees.o bits.o unzip.o inflate.o util.o crypt.o lzw.o unlzw.o getopt.o alloca.o
-
- gzip: $(OBJS)
- $(CC) -o $@ $(OBJS)
-