home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / Extras / Development / RKM_Companion_v2.04 / Math / smakefile < prev    next >
Encoding:
Makefile  |  1996-03-20  |  588 b   |  32 lines

  1. CFLAGS = nostackcheck structureequivalence ignore=73
  2.  
  3. all:    dpieee dptrans ffpbasic ffpexample ffptrans \
  4.     mathsupport spieee sptrans
  5.  
  6. dpieee: dpieee.c
  7.     sc link $(CFLAGS) math=ieee $@
  8.  
  9. dptrans: dptrans.c
  10.     sc link $(CFLAGS) math=ieee $@
  11.  
  12. ffpbasic: ffpbasic.c
  13.     sc link $(CFLAGS) math=ffp $@
  14.  
  15. ffpexample: ffpexample.c
  16.     sc link $(CFLAGS) math=ffp $@
  17.  
  18. ffptrans: ffptrans.c
  19.     sc link $(CFLAGS) math=ffp $@
  20.  
  21. mathsupport: mathsupport.c
  22.     sc link $(CFLAGS) math=ffp $@
  23.  
  24. spieee: spieee.c
  25.     sc link $(CFLAGS) math=ieee $@
  26.  
  27. sptrans: sptrans.c
  28.     sc link $(CFLAGS) math=ieee $@
  29.  
  30. clean:
  31.     -delete \#?.(o|lnk)
  32.