Download Makefile source code

1
2
3
4
5
6
7
8
APPNAME=hello_i_of_w_shr

$(APPNAME): $(APPNAME).c
	cc -g -Wall -Wextra $(APPNAME).c -o $(APPNAME) -pthread

.PHONY: clean
clean:
	rm -f $(APPNAME)