home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 14 / CDACTUAL.iso / cdactual / demobin / share / program / c / ZCOMPLEX.ZIP / MUTANT < prev    next >
Encoding:
Text File  |  1990-03-18  |  306 b   |  15 lines

  1. # mutant
  2. # makefile for mutant program
  3. #
  4. # (get rid of -f flags if you don't have an 80x87)
  5.  
  6. mutant: mutant.obj complex.obj
  7.     ztc -omutant mutant.obj complex.obj fg.lib -ms -f
  8.  
  9. mutant.obj: mutant.cpp
  10.     ztc -c mutant.cpp -ms -f
  11.  
  12. complex.obj: complex.cpp complex.hpp
  13.     ztc -c complex.cpp -ms -f
  14.  
  15.