home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 292.lha / TinyTerm / makefile < prev    next >
Makefile  |  1992-09-02  |  267b  |  19 lines

  1. OPT = -O
  2.  
  3. term    : term.o termmenu.o termxfr.o termfile.o 
  4.     blink WITH term.lnk
  5.     
  6. term.o    : term.c
  7.     lc $(OPT) term
  8.     
  9. termmenu.o : termmenu.c term.h
  10.     lc termmenu
  11.     
  12. termxfr.o : termxfr.c term.h
  13.     lc $(OPT) termxfr    
  14.  
  15. termfile.o : termfile.c term.h
  16.     lc $(OPT) termfile.c
  17.     
  18.     
  19.