summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authortomsmeding <hallo@tomsmeding.nl>2015-10-03 11:03:00 +0200
committertomsmeding <hallo@tomsmeding.nl>2015-10-03 11:03:00 +0200
commit5a93cdaf5d4fcefe664271bb8f233044059f3ad3 (patch)
treed7cc23a9b6187c3c8296c9dc580906ef7a02da84 /Makefile
parent36a317741a2eca593d083534b290afcc6d1661ef (diff)
evaluatebutton, histbrowser, file splitting, makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 15 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 811d88e..98c2323 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,17 @@
CXX = g++
+CXXFLAGS = -Wall -Wextra -pedantic -std=c++11 -O2
LIBS = -lfltk
-CXXFLAGS = -Wall -Wextra -std=c++11 -O2 $(LIBS)
+BIN = flogo
+
+.PHONY: all clean remake
+
+all: $(BIN)
+
+clean:
+ rm -f $(BIN) *.o
+
+remake: clean all
+
+
+$(BIN): flogo.o engine.o
+ $(CXX) $(CXXFLAGS) $(LIBS) -o $(BIN) $^