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

  1. #   This MPW makefile is designed to be used to compile an MPW version
  2. #   of unzip using the MPW C compiler, version 3.2. 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:    Friday, May 9, 1992 9:00:00 PM
  23.  
  24.  
  25. CFLAGS = -d MPW # -d CRYPT
  26.  
  27. LFLAGS = -m
  28.  
  29.  
  30. .c.o ─ .c unzip.h unzip.make
  31.         C {CFLAGS} {Default}.c
  32.  
  33. OBJECTS = ╢
  34.         unzip.c.o ╢
  35. #       crypt.c.o ╢
  36.         envargs.c.o ╢
  37.         explode.c.o ╢
  38.         extract.c.o ╢
  39.         file_io.c.o ╢
  40.         inflate.c.o ╢
  41.         macfile.c.o ╢
  42.         macstat.c.o ╢
  43.         mapname.c.o ╢
  44.         match.c.o ╢
  45.         misc.c.o ╢
  46.         unreduce.c.o ╢
  47.         unshrink.c.o
  48.  
  49. Unzip ─ {OBJECTS} unzip.r
  50.         Link -d -c 'MPS ' -t MPST ╢
  51.                 {OBJECTS} ╢
  52.                 "{CLibraries}"StdClib.o ╢
  53.                 "{Libraries}"Stubs.o ╢
  54.                 "{Libraries}"Runtime.o ╢
  55.                 "{Libraries}"Interface.o ╢
  56.                 -o Unzip
  57.         rez -append -o Unzip unzip.r
  58.  
  59. unzip.r ─ unzip.thinkc.rsrc
  60.         derez unzip.thinkc.rsrc > unzip.r
  61.