home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 191.lha / Snip_It_sources_v1.2 / makefile < prev    next >
Makefile  |  1988-04-28  |  242b  |  20 lines

  1. CFLAG = 
  2. LFLAGS = -w
  3. CFLAGS = $(CFLAG) +ihs.i
  4. OBJS = main.o hand.o reco.o
  5.  
  6. snipit: $(OBJS) detach.o
  7.     ln $(LFLAGS) -o $* $(OBJS) detach.o -lc
  8.     beep
  9.  
  10. detach.o: detach.c
  11.  
  12. $(OBJS): hs.i
  13.  
  14. hs.i: hs.h
  15.     cc -o nil: +hhs.i hs.h
  16.  
  17. final:
  18.     @make LFLAGS=
  19.  
  20.