home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / c / agl103p.lha / src / agl / sas.makefile < prev    next >
Encoding:
Makefile  |  1994-12-09  |  334 b   |  25 lines

  1. # makefile for SAS 6.50
  2.  
  3. INCLUDES = agl.h usr:include/gl.h usr:include/device.h
  4. OUTPUT = usr:lib/gl.lib
  5. CC = sc
  6.  
  7.  
  8. all: $(OUTPUT)
  9.  
  10.  
  11. ### Amiga GL        ###
  12. $(OUTPUT): $(OFILES)
  13.     echo >$(OUTPUT)
  14.     delete $(OUTPUT)
  15.     oml $(OUTPUT) r $(OFILES)
  16.  
  17.  
  18. #$(OFILES): $(INCLUDES)
  19.  
  20.  
  21. ### Generic Rule    ###
  22. .c.o: $(INCLUDES)
  23.     $(CC) $*
  24.     copy $*.c COMPILEbackup
  25.