diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 8 |
2 files changed, 10 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5c54624 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +plop +*.o diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..75c8fba --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +CFLAGS+=-Wall -Wextra -Wpedantic + +plop: plop.o + +clean: + rm -f plop *.o + +.PHONY: clean |