build: splash.dll

buildall: clean splash.dll

compilerc: splash.res

syntax:
	hla -s splash.hla

clean:
	delete tmp
	delete *.dll
	delete *.obj
	delete *.link
	delete *.inc
	delete *.asm
	delete *.map


splash.res: splash.rc
	rc /v splash.rc

splash.obj: splash.hla
	hla -p:tmp -w -c splash

splash.dll: splash.hla splash.obj
	link /dll /subsystem:windows /entry:DLLEntry /def:splash.def user32.lib kernel32.lib gdi32.lib splash.obj splash.res



