home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff384.lzh / NorthC / Example2.LZH / make / Makefile < prev    next >
Makefile  |  1990-08-30  |  252b  |  18 lines

  1. make: file.o reader.o make.o gomake.o
  2.         blink with make.blink
  3.  
  4. file.o: file.c make.h
  5.  
  6. make.o: make.c make.h
  7.  
  8. reader.o: reader.c make.h
  9.  
  10. gomake.o: gomake.c make.h
  11.  
  12. test: test.o
  13.  
  14. .c.o:
  15.     NorthC -Ot:$*.s $*.c
  16.     A68K -q -g -O$*.o t:$*.s
  17.     delete t:$*.s
  18.