Download Makefile source code

hello_w: hello_w.c
	cc -g -Wall -Wextra hello_w.c -o hello_w -pthread

.PHONY: clean
clean:
	rm -f hello_w