home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 408.lha / StarBlankers / DMakefile < prev    next >
Makefile  |  1990-09-02  |  656b  |  30 lines

  1. # NATIVE BUILD ONLY
  2.  
  3. SU=lib:c.o
  4. CC=lc
  5. CCF=-csf -v -b0 -iinclude: -o
  6. LN=blink
  7. LNF=NODEBUG SMALLCODE SMALLDATA DEFINE __main=__tinymain
  8. LIBS=lib:lc.lib+lib:amiga.lib+lib:debug.lib
  9.  
  10. INC=/common/local.h app.h
  11. OBJ=main.o cx.o window.o app.o blanker.o
  12.  
  13. blanker.ld: $(OBJ)
  14.    $(LN) $(LNF) FROM $(SU) $(OBJ) revision.o LIB $(LIBS) TO Blanker.ld
  15.  
  16. main.o : /common/main.c $(INC)
  17.    $(CC) $(CCF)main.o /common/main.c
  18.  
  19. cx.o : /common/cx.c $(INC)
  20.    $(CC) $(CCF)cx.o /common/cx.c
  21.  
  22. window.o : /common/window.c $(INC)
  23.    $(CC) $(CCF)window.o /common/window.c
  24.  
  25. app.o : app.c app.h
  26.    $(CC) $(CCF)app.o app.c
  27.  
  28. blanker.o : blanker.c app.h
  29.    $(CC) $(CCF)blanker.o blanker.c
  30.