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