home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Science / Science.zip / lsqrft15.zip / fit.mak < prev    next >
Text File  |  1993-12-12  |  914b  |  33 lines

  1. cc = icc
  2. cflags=/C /DICC /DOS2 /Sd /Gd /Tl5 /Gf /O /Oi64 /Gi /G4 /Fi /Si
  3.  
  4. fit2.exe:fit2.obj mrqfit2.obj funclib2.obj fitutil2.obj fitcmds2.obj solve_da.obj plot.obj linear2.obj popen.obj
  5.     $(cc) /B/stack:128000 fit2.obj mrqfit2.obj funclib2.obj fitutil2.obj fitcmds2.obj solve_da.obj plot.obj linear2.obj popen.obj
  6.  
  7. mrqfit2.obj:mrqfit2.c fit.h makefile
  8.     $(cc) $(cflags) mrqfit2.c
  9.  
  10. fitcmds2.obj:fitcmds2.c fit.h makefile
  11.     $(cc) $(cflags) fitcmds2.c
  12.  
  13. funclib2.obj:funclib2.c fit.h makefile
  14.     $(cc) $(cflags) funclib2.c
  15.  
  16. fitutil2.obj:fitutil2.c fit.h makefile
  17.     $(cc) $(cflags) fitutil2.c
  18.  
  19. solve_da.obj:solve_da.c fit.h makefile
  20.     $(cc) $(cflags) solve_da.c
  21.  
  22. linear2.obj:linear2.c fit.h makefile
  23.     $(cc) $(cflags) linear2.c
  24.  
  25. popen.obj:popen.c fit.h makefile
  26.     $(cc) $(cflags) popen.c
  27.  
  28. plot.obj:plot.c makefile
  29.     $(cc) $(cflags) plot.c
  30.  
  31. fit2.obj:fit2.c fit.h makefile
  32.     $(cc) $(cflags) fit2.c
  33.