home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD5.iso / workbench / monitory / syslog_v1.00 / developer / examples / spy / smakefile < prev    next >
Encoding:
Makefile  |  1995-11-13  |  273 b   |  21 lines

  1. #
  2. # This file is public domain.
  3. #
  4. # $Id: smakefile 1.1 1995/10/30 23:22:48 petrin Exp petrin $
  5. #
  6.  
  7. #DEBUG     = DEBUG=FULLFLUSH
  8. DEBUG     =
  9.  
  10. CFLAGS    = $(DEBUG)
  11.  
  12.  
  13. Spy: Spy.o
  14.    sc link $(CFLAGS) Spy.o
  15.  
  16. Spy.o: Spy.c
  17.    sc $(CFLAGS) Spy.c
  18.  
  19. clean:
  20.    delete Spy Spy.lnk Spy.o
  21.