home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / req.lzh / Req / ReqAztec5.LZH / ReqAztec5 / makefile < prev    next >
Encoding:
Makefile  |  1991-02-05  |  523 b   |  31 lines

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