From 5d7252681da3b26845fc4e5dcf0b0e94ed9fabb1 Mon Sep 17 00:00:00 2001 From: Carlo Zancanaro Date: Fri, 6 Apr 2012 14:02:26 +1000 Subject: Move everything into impl/ and add a Makefile. --- impl/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 impl/Makefile (limited to 'impl/Makefile') 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) -- cgit v1.2.3