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 / Example1.LZH / cRender / Makefile < prev    next >
Makefile  |  1990-08-30  |  398b  |  18 lines

  1. # Makefile for simple three dimensional renderer
  2.  
  3. CRender: render.o aif.o
  4.     blink with $*.blink
  5.  
  6. render.o: 3D.h
  7.  
  8. aif.o: 3D.h menustrip.h requester.h
  9.  
  10. # Optimise the code again if you want to run this on single disk machines 
  11. # you will have to say "NorthC:bin/NorthC" rather than just "NorthC" here.
  12.  
  13. .c.o:
  14.     NorthC -Ot:$*.s $*.c
  15.     top t:$*.s t:$*.s1
  16.     a68k -g -q -O$*.o t:$*.s1
  17.     delete t:$*.s t:$*.s1
  18.