Download Makefile source code

1
2
3
4
5
6
hello_w: hello_w.c
	cc -g -Wall -Wextra hello_w.c -o hello_w -pthread

.PHONY: clean
clean:
	rm -f hello_w