home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / Example_Code_v37 / AmigaMail / ManWindows / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-17  |  227 b   |  16 lines

  1. CFLAGS = nostackcheck structureequivalence saveds ignore=73
  2.  
  3. all: Hide Jumpy Zoom
  4.  
  5. Hide: Hide.c
  6.     sc link $(CFLAGS) $@.c
  7.  
  8. Jumpy: Jumpy.c
  9.     sc link $(CFLAGS) $@.c
  10.  
  11. Zoom: Zoom.c
  12.     sc link $(CFLAGS) $@.c
  13.  
  14. clean:
  15.     -delete \#?.(o|lnk)
  16.