home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 508.lha / lightpen_v1.1 / makefile < prev    next >
Makefile  |  1991-05-06  |  269b  |  20 lines

  1. # Makefile for the Lightpen-Handler
  2. # (SAS/C and LMK)
  3.  
  4. CC    = lc
  5. FLAGS    = -caf -v
  6.  
  7. lp:    lp.o
  8.     blink <with <
  9.         DEFINE __main=__tinymain
  10.         FROM LIB:cback.o+lp.o
  11.         TO lp
  12.         LIBRARY LIB:lc.lib+LIB:amiga.lib
  13.         SMALLCODE
  14.         SMALLDATA
  15.         NODEBUG
  16.         <
  17.  
  18. lp.o:    lp.c
  19.     $(CC) $(FLAGS) lp.c
  20.