home *** CD-ROM | disk | FTP | other *** search
/ The AGA Experience 2 / agavol2.iso / software / utilities / wb_tools / executive_v1.30 / sysinfo.lzx / examples / test / smakefile < prev    next >
Makefile  |  2007-03-12  |  303b  |  21 lines

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