#	Dan's Color Converter - Symantec C++ makefile
#	
#	Copyright 1993 by Daniel Lyke
#
#
#	This is EgoWare. You may freely copy and distribute these programs as long
#	as all parts are distributed together and unaltered. All source code may be
#	incorporated into your own programs, but I'd appreciate it if you drop me a
#	postcard or message telling me that you're using it and what you're using
#	it for. I make no warranties, express or implied, concerning the proper
#	operation of the program or any of the accompanying source code.

all : matrix.exe matrix.hlp

.cpp.obj :
	sc -ml -c -W3 $*.cpp

.hdc.rtf :
	del $*.rtf
	rtfhelp $*

matrix.exe : matrix.obj dlmatrix.obj matrix.rc
	sc -ml -W3 matrix.obj dlmatrix.obj matrix.rc commdlg.lib

matrix.obj : matrix.cpp matrix.h dlmatrix.h

dlmatrix.obj : dlmatrix.cpp dlmatrix.h


matrix.hlp : matrix.hpj matrix.rtf
	hc31 matrix.hpj

matrix.rtf : matrix.hdc
