home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 300-399 / ff316.lzh / Vectors / V1.0 / src / makefile < prev    next >
Makefile  |  1990-02-06  |  552b  |  24 lines

  1. OBJ=vectors.o rnd.o ciatimer.o draw.o bmaprport.o
  2. LIB=lib:amiga.lib lib:lc.lib
  3. ARG=SMALLDATA SMALLCODE VERBOSE NODEBUG
  4. CCFLAGS=-b0 -ccst -v
  5.  
  6. vectors:    $(OBJ)
  7.             blink from lib:a.o $(OBJ) lib $(LIB) to vectors $(ARG)
  8.  
  9. vectors.o:  vectors.c
  10.             lc $(CCFLAGS) vectors
  11.  
  12. bmaprport.o:  bmaprport.c
  13.             lc $(CCFLAGS) bmaprport
  14.  
  15. rnd.o:      rnd.a
  16.             assem rnd.a -o rnd.o
  17.  
  18. ciatimer.o: ciatimer.c
  19.             lc $(CCFLAGS) ciatimer
  20.  
  21. draw.o:     draw.a
  22.             assem -i root:usr/lc/include/c+work:vectors draw.a -o draw.o
  23.  
  24.