all: hello.exe

run: hello.exe
	./hello.exe

hello.exe: hello.c
	gcc hello.c -o hello.exe

clean:
	rm -f *.exe *.o