# mutant
# makefile for mutant program
#
# (get rid of -f flags if you don't have an 80x87)

mutant: mutant.obj complex.obj
	ztc -omutant mutant.obj complex.obj fg.lib -ms -f

mutant.obj: mutant.cpp
	ztc -c mutant.cpp -ms -f

complex.obj: complex.cpp complex.hpp
	ztc -c complex.cpp -ms -f

