all: patchlib.exe 

patchlib.exe: patchlib.o
	link /out:$@ /debug $^

%.o: %.c
	cl -W3 -Od -c -Fo$@ $<

clean:
	rm *.o
