build: DLLSkeleton.dll

buildall: clean DLLSkeleton.dll

compilerc:
	echo No Resource Files to Process!

syntax:
	hla -s DLLSkeleton.hla

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


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

DLLSkeleton.dll: DLLSkeleton.hla DLLSkeleton.obj
	link /dll /subsystem:windows /entry:DLLEntry /def:DLLSkeleton.def user32.lib DLLSkeleton.obj



