home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 9 Archive / 09-Archive.zip / UNZP50P1.ZIP / MAC / aztec.make next >
Text File  |  1993-01-23  |  1KB  |  58 lines

  1. #   This MPW makefile is designed to be used to compile an MPW version
  2. #   of unzip using the Aztec C compiler, version 5.2a. Simply rename
  3. #   this file as unzip.make and do an MPW build.
  4.  
  5.  
  6. #   File:       unzip.make
  7. #   Target:     Unzip
  8. #   Sources:    unzip.c
  9. #               crypt.c
  10. #               envargs.c
  11. #               explode.c
  12. #               extract.c
  13. #               file_io.c
  14. #               inflate.c
  15. #               macfile.c
  16. #               macstat.c
  17. #               mapname.c
  18. #               match.c
  19. #               misc.c
  20. #               unreduce.c
  21. #               unshrink.c
  22. #   Created:    Tuesday, May 5, 1992 7:05:00 PM
  23.  
  24.  
  25. CFLAGS = -d MPW # -d CRYPT
  26.  
  27. LFLAGS = -m
  28.  
  29.  
  30. .o ─ .c unzip.h unzip.make
  31.         C {CFLAGS} -o {Default}.o {Default}.c
  32.  
  33. .o ─ .asm
  34.         as -o {Default}.o {Default}.asm
  35.  
  36. OBJECTS = ╢
  37.         unzip.o ╢
  38. #       crypt.o ╢
  39.         envargs.o ╢
  40.         explode.o ╢
  41.         extract.o ╢
  42.         file_io.o ╢
  43.         inflate.o ╢
  44.         macfile.o ╢
  45.         macstat.o ╢
  46.         mapname.o ╢
  47.         match.o ╢
  48.         misc.o ╢
  49.         unreduce.o ╢
  50.         unshrink.o
  51.  
  52. Unzip ─ {OBJECTS} unzip.r
  53.         ln {LFLAGS} -o Unzip {OBJECTS} -lm -lmpw -lc
  54.         rez -append -o Unzip unzip.r
  55.  
  56. unzip.r ─ unzip.thinkc.rsrc
  57.         derez unzip.thinkc.rsrc > unzip.r
  58.