summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--Makefile8
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