all: hello_world
|
|
|
|
|
|
%: %.c
|
|
cc -std=c11 -Wall $@.c -o $@
|
|
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf hello_world
|