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

biomorph: biomorph.obj complex.obj
	ztc -obiomorph biomorph.obj complex.obj fg.lib -ms -f

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

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

