diff options
author | Carlo Zancanaro <carlo@carlo-laptop> | 2012-04-06 14:02:26 +1000 |
---|---|---|
committer | Carlo Zancanaro <carlo@carlo-laptop> | 2012-04-06 14:02:26 +1000 |
commit | 5d7252681da3b26845fc4e5dcf0b0e94ed9fabb1 (patch) | |
tree | 20bc0a6b62390aabda0b8c446d3a2177990863f6 /impl/Makefile | |
parent | 83e2c574bdefe2d040cdfbe20a73380a0f0123dd (diff) |
Move everything into impl/ and add a Makefile.
Diffstat (limited to 'impl/Makefile')
-rw-r--r-- | impl/Makefile | 8 |
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) |