home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 344b.lha / plplot_v2.6 / lattice / make-up < prev    next >
Encoding:
AmigaDOS Script File  |  1990-01-27  |  633 b   |  30 lines

  1. .key lib
  2. .def lib "FFP"
  3.  
  4. ; You can use this script to update the library after changing any of the
  5. ; plplot routines.
  6.  
  7. if not "<lib>" eq "FFP"
  8.    if not "<lib>" eq "IEEEF"
  9.       if not "<lib>" eq "IEEED"
  10.          echo "usage: execute make-all [FFP | IEEEF | IEEED]"
  11.          skip end
  12.       endif
  13.    endif
  14. endif
  15.  
  16. if "<lib>" eq "FFP"
  17.    lmk -f Makefile.inc LFLGS=ff LIB=/pllibs/plpffp.lib
  18. endif
  19.  
  20. ; Can't use prototypes here due to Lattice bug :-(
  21. if "<lib>" eq "IEEEF"
  22.    lmk -f Makefile.inc LFLGS=dNOPROTS LIB=/pllibs/plplcmf.lib
  23. endif
  24.  
  25. if "<lib>" eq "IEEED"
  26.    lmk -f Makefile.inc LFLGS=dPLDBL LIB=/pllibs/plplcmd.lib
  27. endif
  28.  
  29. lab end
  30.