From f3d7fae92f518f2b82178486cc0cc455ff8bef26 Mon Sep 17 00:00:00 2001 From: David Phillips Date: Fri, 6 Jan 2017 21:35:26 +1300 Subject: Add config.mk to monty --- monty/Makefile | 6 ++++++ monty/config.mk | 1 + 2 files changed, 7 insertions(+) create mode 100644 monty/config.mk (limited to 'monty') 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 -- cgit v1.1