home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / crlf / makefile < prev   
Encoding:
Makefile  |  1994-01-16  |  420 b   |  34 lines

  1. CC=gcc
  2. WARN=-Wall
  3. VERBOSE=-v
  4. OPTIMIZE=-O
  5. MODEL=-mshort
  6. LIBS=-liio16
  7. CFLAGS=$(VERBOSE) $(MODEL) $(WARN) $(OPTIMIZE)
  8. LDFLAGS=$(VERBOSE) $(MODEL)
  9.  
  10. .SUFFIXES: .ttp .tos .prg .sym
  11.  
  12. #
  13. #
  14. all: crlf.ttp
  15.  
  16. #
  17. #
  18. crlf.ttp: crlf.o
  19.     $(CC) $(LDFLAGS) $< -o $@ $(LIBS)
  20. crlf.o: crlf.c
  21.  
  22. #
  23. #
  24. clean:
  25.     -rm *.o
  26.  
  27. realclean: clean
  28.     -rm *.sym *.tmp
  29.  
  30. distclean: realclean
  31.  
  32. clobber: realclean
  33.     -rm *.ttp *.tos *.prg
  34.