
down.exe: down.obj
	cl down.obj user32.lib

down.obj: down.c
	cl /c down.c

clean:
	-del /f down.obj

reallyclean: clean
	-del /f down.exe

