Compare commits

..

2 Commits

Author SHA1 Message Date
2ac0ca323e Merge pull request 'add makefile' (#1) from somali/Test:main into main
Reviewed-on: cj/Test#1
2022-10-10 10:21:03 -04:00
Chatchai Jantaraprim
656ce6b109 add makefile 2022-10-09 20:40:04 +07:00
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
hello hello
*.o

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
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