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

  1. CFLAGS = nostackcheck structureequivalence data=faronly nostartup ignore=73
  2.  
  3. all: DirComp Find listdir listdir2 ListPattern
  4.  
  5. DirComp: DirComp.c
  6.     sc link $(CFLAGS) $@.c
  7.  
  8. Find: Find.c
  9.     sc link $(CFLAGS) $@.c
  10.  
  11. listdir: listdir.c
  12.     sc link $(CFLAGS) $@.c
  13.  
  14. listdir2: listdir2.c
  15.     sc link $(CFLAGS) $@.c
  16.  
  17. ListPattern: ListPattern.c
  18.     sc link $(CFLAGS) $@.c
  19.  
  20. clean:
  21.     -delete \#?.(o|lnk)
  22.