home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / libs / curses.lzh / CURSES / SRC / MAKEFILE.LATTICE < prev    next >
Text File  |  1991-08-15  |  564b  |  32 lines

  1. #
  2. #    Description : Lattice Makefile for AMIGA CURSES library.
  3. #
  4. #    Authur      : Simon Raybould.  (sie@fulcrum.bt.co.uk)
  5. #
  6. #    Date        : 16th February 1990
  7. #
  8.  
  9. CC= lc
  10. CFLAGS= -v
  11.  
  12. all: curses.lib curses32.lib
  13.      copy curses.lib LIB: CLONE
  14.      copy curses32.lib LIB: CLONE
  15.      copy curses.h INCLUDE: CLONE
  16.  
  17. curses.lib: curses.c acurses.h
  18.     $(CC) $(CFLAGS) curses.c
  19.     copy curses.o $@
  20.     delete curses.o
  21.  
  22. curses32.lib:    curses.c acurses.h
  23.     $(CC) -b0 $(CFLAGS) curses.c
  24.     copy curses.o $@
  25.     delete curses.o
  26.  
  27. clean:    
  28.     -delete \#?.o
  29.     -delete \#?.lnk
  30.     -delete curses.lib
  31.     -delete curses32.lib
  32.