home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / devs&handlers / btntape / lmkfile < prev    next >
Text File  |  1990-10-27  |  455b  |  21 lines

  1. # LATTICE MAKEFILE FOR BTN-TAPE
  2.  
  3. # Compile with -d to create the window version
  4. #FLAGS= -v -y -b1 -mat -cakfsu -d
  5. CFLAGS= -v -y -b1 -mat -cakfsu
  6.  
  7. LIBS=LIB:lc.lib+LIB:amiga.lib
  8.  
  9. tape-handler: tape.o tapeio.o pktstuff.o
  10.    blink FROM tape.o+tapeio.o+pktstuff.o TO $@ SC SD LIB $(LIBS)
  11.  
  12. tape.o : tape.c tape.h tplink.h
  13.     LC $(CFLAGS) tape.c
  14.  
  15. tapeio.o : tapeio.c tape.h
  16.     LC $(CFLAGS) tapeio.c
  17.  
  18. pktstuff.o : pktstuff.c tape.h
  19.     LC $(CFLAGS) pktstuff.c
  20.  
  21.