default: hello winhello
hello: hello.c
	gcc -Wall -o hello hello.c
winhello: winhello.c
	gcc -mno-cygwin -mwindows -o winhello winhello.c
test:	default
	./hello
	./winhello &
	./hello.py &
distclean:
	rm -f *.exe hello *.pyc
