
#=============================================================================
#
# MAKEFILE to build VHARD.SYS and it's associated utilities
#
# Note: This makefile will *not* work with the older version of Microsoft's
#       MAKE utility (yeah, the brain-damaged one).
#
#=============================================================================


all:		vhard.sys vhprep.exe vhcache.exe

vhard.sys:	vhard.exe
	exe2bin vhard vhard.sys

vhard.exe:	vhard.obj
	link vhard;

vhard.obj:	vhard.asm vhard.inc
	masm vhard; > vhard.err

vhprep.exe:	vhprep.obj
	link vhprep;

vhprep.obj:	vhprep.asm vhard.inc
	masm vhprep; > vhprep.err

vhcache.exe:	vhcache.obj
	link vhcache;

vhcache.obj:	vhcache.asm vhard.inc
	masm vhcache; > vhcache.err
