home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 463.lha / ReqAztec / makefile < prev    next >
Makefile  |  1991-01-05  |  330b  |  22 lines

  1. CFLAGS = -qf -ps -so -wp -wd -wu -hi ram:small.pre
  2.  
  3. PROG = showoffreq
  4. LIB  = req.lib
  5. OBJS = LinkStri.o LinkProp.o Format.o SimpleRe.o TwoGadRe.o TheReq.o
  6.  
  7. .asm.o:
  8.     as $*.asm
  9.  
  10. .c.o:
  11.     cc $(CFLAGS) $*.c
  12.  
  13. all: $(PROG) $(LIB)
  14.  
  15. $(LIB): $(OBJS)
  16.     lb $(LIB) $(OBJS)
  17.     Copy $(LIB) clib:
  18.  
  19. $(PROG): $(PROG).o $(LIB)
  20.     ln $(PROG).o -lc16 -lreq
  21.  
  22.