home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / math / spline29 / makefile < prev    next >
Encoding:
Makefile  |  1992-11-11  |  365 b   |  20 lines

  1. CFLAGS=-ml -v
  2. # CFLAGS=-ml
  3. FILES=read.me spline.doc makefile spline.c zero.c spline.exe test.bat s i s3 sh
  4.  
  5. spline.exe: spline.c zero.obj
  6.     $(CC) $(CFLAGS) spline.c zero.obj
  7.  
  8. zero.obj: zero.c
  9.     
  10. distrib: spline.zip
  11. spline.zip: $(FILES)
  12.     echo splines under tension|pkzip -zuP spline $(FILES) ok/ss*
  13.  
  14. test:
  15.     test
  16.  
  17. clean:
  18.     erase *.obj
  19.     erase test\ss*
  20.