hello.cgi: hello.cpp
	g++ -std=c++11 hello.cpp -o hello.cgi

.PHONY: clean test
clean:
	rm -f *.cgi

test:
	env QUERY_STRING=en.txt strace ./hello.cgi > /dev/null
