home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD5.iso / workbench / monitory / syslog_v1.00 / developer / examples / log / smakefile < prev   
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 19:33:00 petrin Exp petrin $
  5. #
  6.  
  7. #DEBUG     = DEBUG=FULLFLUSH
  8. DEBUG     =
  9.  
  10. CFLAGS    = $(DEBUG)
  11.  
  12.  
  13. Log: Log.o
  14.    sc link $(CFLAGS) Log.o
  15.  
  16. Log.o: Log.c
  17.    sc $(CFLAGS) Log.c
  18.  
  19. clean:
  20.    delete Log Log.lnk Log.o
  21.