home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / math / cephes / ellf / ellf.mak < prev    next >
Encoding:
Text File  |  1992-11-17  |  322 b   |  21 lines

  1. #
  2. # MSDOS makefile for ellf.exe
  3. #
  4. ellf.obj: ellf.c
  5.     cl /c ellf.c
  6.  
  7. ellik.obj: ellik.c
  8.     cl /c ellik.c
  9.  
  10. ellpj.obj: ellpj.c
  11.     cl /c ellpj.c
  12.  
  13. ellpk.obj: ellpk.c mconf.h
  14.     cl /c ellpk.c
  15.  
  16. mtherr.obj: mtherr.c mconf.h
  17.     cl /c mtherr.c
  18.  
  19. ellf.exe: ellf.obj ellik.obj ellpj.obj ellpk.obj mtherr.obj
  20.     link ellf ellik ellpj ellpk mtherr;
  21.