home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 336.lha / mackie_v1.4 / makefile < prev    next >
Makefile  |  1990-01-09  |  283b  |  21 lines

  1. all: mackie mdemo
  2.  
  3. # if you want help-key processing, add `-DHELPKEY' to the following line.
  4.  
  5. CFLAGS= -DHELPKEY
  6.  
  7. mackie: mackie.o
  8.     ln mackie.o -lc
  9.  
  10. mackie.o: mackie.c
  11.     cc $(CFLAGS) mackie.c
  12.  
  13. mdemo: mdemo.o
  14.     ln mdemo.o -lc
  15.  
  16. mdemo.o: mdemo.c
  17.     cc $(CFLAGS) mdemo.c
  18.  
  19. clean:
  20.     delete #?.o
  21.