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 / top / Makefile < prev    next >
Makefile  |  1990-08-30  |  324b  |  21 lines

  1. #
  2. # Makefile for the optimizer
  3. #
  4.  
  5. top: main.o io.o util.o sym.o func.o branch.o inst.o opcodes.o \
  6.     peep.o health.o data.o copy.o coalesce.o
  7.     blink with $*.blink
  8.  
  9. .c.o:
  10.     NorthC -Ot:$*.s $*.c
  11.     xtop t:$*.s t:$*.s1
  12.     delete t:$*.s
  13.     a68k -q -g -O$*.o t:$*.s1
  14.     delete t:$*.s1
  15.  
  16. #clean:
  17. #    $(RM) *.o
  18. #
  19. #clobber:
  20. #    $(RM) *.o xtop.ttp
  21.