#
# Makefile for DOS version of plotfoil
#
# This make file is appropriate for Microsoft C Version 6.00A
# and Microsoft NMAKE.
#
# Just type "nmake /f makefile.dos" to build the program.
#
# Andrew Patrick, andrew@calvin.dgbt.doc.ca

plotfoil.exe : plotfoil.obj spline.obj
	link +plotfoil+spline+ui+ps_procs,plotfoil;

plotfoil.obj: plotfoil.c
	cl /c plotfoil.c

spline.obj: spline.c
	cl /c spline.c

ui.obj: ui.c
	cl /c ui.c

ps_procs.obj: ps_procs.c
	cl /c ps_procs.c
