home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / math / lsqrft13.zip / MAKEFILE < prev    next >
Text File  |  1993-07-02  |  644b  |  30 lines

  1. cc = gcc
  2. cflags=-c -O2 -DOS2
  3.  
  4. fit2.exe:fit2.o mrqfit2.o funclib2.o fitutil2.o fitcmds2.o solve_da.o plot.o linear2.o
  5.     $(cc) fit2.o mrqfit2.o funclib2.o fitutil2.o fitcmds2.o solve_da.o plot.o linear2.o -lm -o fit2.exe
  6.  
  7. .c.o:
  8.     $(cc) $(cflags) $<
  9.  
  10. mrqfit2.o:mrqfit2.c fit.h
  11.     $(cc) $(cflags) mrqfit2.c
  12.  
  13. fitcmds2.o:fitcmds2.c fit.h
  14.     $(cc) $(cflags) fitcmds2.c
  15.  
  16. fitutil2.o:fitutil2.c fit.h
  17.     $(cc) $(cflags) fitutil2.c
  18.  
  19. solve_da.o:solve_da.c fit.h
  20.     $(cc) $(cflags) solve_da.c
  21.  
  22. linear2.o:linear2.c fit.h
  23.     $(cc) $(cflags) linear2.c
  24.  
  25. plot.o:plot.c fit.h
  26.     $(cc) $(cflags) plot.c
  27.  
  28. fit2.o:fit2.c fit.h
  29.     $(cc) $(cflags) fit2.c
  30.