all: ReWire.dll main.exe

ReWire.dll: ReWire.c ReWire.h
	gcc -shared ReWire.c -o ReWire.dll

main.exe: main.c ReWire.dll
	gcc main.c -o main.exe
