summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-01-06 21:35:26 +1300
committerDavid Phillips <david@sighup.nz>2017-01-06 21:35:32 +1300
commitf3d7fae92f518f2b82178486cc0cc455ff8bef26 (patch)
treec3e4e603ca67ca95e1c049203cd327b3675f80c8
parent9ac6dd571652cafd3533356ed64cb7f6fafa9dd3 (diff)
downloadodds-and-ends-f3d7fae92f518f2b82178486cc0cc455ff8bef26.tar.xz
Add config.mk to monty
-rw-r--r--monty/Makefile6
-rw-r--r--monty/config.mk1
2 files changed, 7 insertions, 0 deletions
diff --git a/monty/Makefile b/monty/Makefile
index aa5f1de..75206d9 100644
--- a/monty/Makefile
+++ b/monty/Makefile
@@ -1 +1,7 @@
+include config.mk
+
monty:
+
+.PHONY: clean
+clean:
+ rm -f monty
diff --git a/monty/config.mk b/monty/config.mk
new file mode 100644
index 0000000..e8c9b31
--- /dev/null
+++ b/monty/config.mk
@@ -0,0 +1 @@
+CFLAGS += -Wall -Wextra -Werror