home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d1xx / d162 / iffar.lha / Iffar / Makefile < prev    next >
Makefile  |  1988-10-02  |  841b  |  37 lines

  1. # iffar - IFF CAT archiver, makefile
  2. #
  3. #  By Karl Lehenbauer, version 1.2, release date 5/9/88.
  4. #  This code is released to the public domain.
  5. #  See the README file for more information.
  6. #
  7. #  This makefile is for Manx Aztec C 3.6a for the Commodore Amiga computer.
  8. #  It probably works under 3.4, but I haven't tried it.
  9. #
  10. #CFLAGS=    -n +p -DDEBUG +Iincludes.pre
  11. CFLAGS=    +p +Iincludes.pre
  12.  
  13. HFILES= assert.h iff.h
  14.  
  15. .c.o:
  16.     cc $(CFLAGS) $*.c
  17.  
  18. all:    iffar
  19.     say "ready"
  20.  
  21. clean:
  22.     -delete #?.o
  23.     -delete #?.bak
  24.     -delete includes.pre
  25.  
  26. scratch:    clean    all
  27.  
  28. iffar:    includes.pre main.o cleanup.o create.o toc.o iff.o \
  29.     extract.o delete.o replace.o quickappend.o misc.o
  30.     ln +q -o iffar main.o cleanup.o create.o toc.o iff.o extract.o \
  31. delete.o replace.o quickappend.o misc.o -lcl32
  32.  
  33. includes.pre:    $(HFILES)
  34.     -delete #?.o
  35.     cc +p +Hincludes.pre includes.c
  36.  
  37.