summaryrefslogtreecommitdiff
path: root/impl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'impl/Makefile')
-rw-r--r--impl/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/impl/Makefile b/impl/Makefile
index 1d2eb4b..05e4a83 100644
--- a/impl/Makefile
+++ b/impl/Makefile
@@ -1,8 +1,9 @@
CC=g++
BUILD=build/
+FLAGS=-Wall -Werror -g
all: build-dir
- $(CC) main.cpp -Wall -Werror -o $(BUILD)/main
+ $(CC) main.cpp $(FLAGS) -o $(BUILD)/main
build-dir:
mkdir -p $(BUILD)