home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / prog_c / zc.lzh / ZC / ZCSRC.LZH / IOLib / Math / Makefile < prev    next >
Encoding:
Makefile  |  1989-06-06  |  257 b   |  18 lines

  1. #
  2. # Makefile to assemble the motorola floating point library.
  3. #
  4.  
  5. .SUFFIXES:    .c .a
  6.  
  7. .a.o:
  8.     A68k -d $*.a
  9.  
  10. .c.o:
  11.     cc -a -O -DFLOATS $*.c
  12.     a68k -o$*.o -d $*.s
  13.     delete $*.s
  14.  
  15. ma.lib    : mathbas.o mathtrans.o printf.o scanf.o fp_prt.o fp_scan.o
  16.     join *.o as ma.lib
  17.  
  18.