Files
Test/Makefile
Chatchai Jantaraprim 656ce6b109 add makefile
2022-10-09 20:40:04 +07:00

13 lines
133 B
Makefile

ALL: hello
hello.o: hello.c
gcc -Wall -c hello.c
hello: hello.o
gcc -o hello hello.o
clean:
rm -f hello.o hello
.PHONY: clean