home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 294.lha / iffar_v1.4 / Makefile < prev    next >
Makefile  |  1989-10-08  |  835b  |  42 lines

  1. # iffar - IFF CAT archiver, makefile
  2. #
  3. #  By Karl Lehenbauer, version 1.3, release date 7/31/89.
  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.  
  11. CFLAGS=    +p +Iincludes.pre
  12. #CFLAGS=    -n +p -DDEBUG +Iincludes.pre
  13.  
  14. SDBFLAGS=
  15. #SDBFLAGS= -g
  16.  
  17. HFILES= assert.h iff.h
  18.  
  19. OFILES= main.o cleanup.o create.o toc.o iff.o \
  20.     extract.o delete.o replace.o quickappend.o misc.o
  21.  
  22. .c.o:
  23.     cc $(CFLAGS) $*.c
  24.  
  25. all:    iffar
  26.     say "ready"
  27.  
  28. clean:
  29.     -delete #?.o quiet
  30.     -delete #?.bak quiet
  31.     -delete includes.pre quiet
  32.  
  33. scratch:    clean    all
  34.  
  35. iffar:    includes.pre $(OFILES)
  36.     ln $(SDBFLAGS) +q -o iffar $(OFILES) -lcl32
  37.  
  38. includes.pre:    $(HFILES) includes.c
  39.     cc +p +Hincludes.pre includes.c
  40.  
  41.  
  42.