home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / archiver / gzip06st / makefile.st < prev    next >
Makefile  |  1993-07-07  |  438b  |  11 lines

  1. # Very simple makefile for GZIP v0.6 Atari.
  2. # If you want to build GZIP for a normal TOS-filesystem then you should
  3. # add "-DNO_SYMLINK -DNO_MULTIPLE_DOTS -DNO_CHOWN" to CFLAGS.
  4.  
  5. CC = gcc
  6. CFLAGS = -O2 -D__STDC__ -DSTDC_HEADERS -DDIRENT -DHAVE_UNISTD_H -DUTIME -DNEED_MEMORY_H -DHAVE_STRING_H
  7. 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
  8.  
  9. gzip:    $(OBJS)
  10.     $(CC) -o $@ $(OBJS)
  11.