diff options
author | Carlo Zancanaro <carlo@carlo-laptop> | 2012-04-26 16:15:17 +1000 |
---|---|---|
committer | Carlo Zancanaro <carlo@carlo-laptop> | 2012-04-26 16:15:17 +1000 |
commit | 63a10756032fa5c677787fba209706b8bf1e4bef (patch) | |
tree | 705ee15011d9aaeec3b921c3f808427c8aa00589 /impl/Makefile | |
parent | a9de4273bf8377aeab7d3f76a6d8bc0c89b42f79 (diff) |
A bunch of modifications working to a good solver.
Diffstat (limited to 'impl/Makefile')
-rw-r--r-- | impl/Makefile | 3 |
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) |