home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 200-299 / ff299.lzh / Rxil / makefile < prev    next >
Makefile  |  1989-12-30  |  369b  |  24 lines

  1. # Lattice 'C'
  2.  
  3.  
  4. LFLAGS= BATCH VERBOSE 
  5.  
  6. CFLAGS= -b1 -cft -mat -q3e -r1s -j85e86e87e88e -v
  7.  
  8.  
  9. all:    demo
  10.  
  11.  
  12. #---------------------   The Demo Program   -----------------------
  13.  
  14. demo:    demo.o
  15.     blink   $(LFLAGS) NODEBUG \
  16.         FROM   LIB:c.o $?   LIB:rexxglue.o \
  17.         TO   $@ \
  18.         LIBRARY   LIB:lc.lib   LIB:amiga.lib   LIB:rxil.lib
  19.  
  20.  
  21. demo.o:    demo.c    $S
  22.     lc $(CFLAGS) -d0 -o$@ $*.c
  23.  
  24.