home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Misc / EXECUT13.LHA / Executive_V1.30 / SysInfo.lzx / examples / uptime / smakefile < prev    next >
Encoding:
Makefile  |  1995-11-23  |  407 b   |  23 lines

  1. #
  2. # This file is public domain
  3. #
  4. # $Id: smakefile 1.2 1995/10/30 19:15:00 petrin Exp petrin $
  5. #
  6.  
  7. # Uncomment to include Multiuser-support
  8. MULTIUSER = DEFINE=USE_MULTIUSER
  9.  
  10. #DEBUG     = DEBUG=FULLFLUSH
  11. DEBUG     =
  12.  
  13. CFLAGS    = MATH=STANDARD $(MULTIUSER) $(DEBUG)
  14.  
  15. uptime: uptime.o
  16.    sc link $(CFLAGS) uptime.o
  17.  
  18. uptime.o: uptime.c defs.h
  19.    sc $(CFLAGS) uptime.c
  20.  
  21. clean:
  22.    delete uptime uptime.lnk uptime.o
  23.