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 / disass / Makefile < prev    next >
Makefile  |  1990-08-30  |  273b  |  15 lines

  1. # Makefile for disass from Martin Combs
  2.  
  3. disass: disass.o
  4.     blink with $*.blink
  5.  
  6. # Use the optimiser it not only makes the code smaller it also puts the
  7. # text at the front
  8. .c.o:
  9.     NorthC -Ot:$*.s $*.c
  10.     top t:$*.s t:$*.s1
  11.     a68k -g -q -O$*.o t:$*.s1
  12.     delete t:$*.s t:$*.s1
  13.  
  14.     
  15.