summaryrefslogtreecommitdiff
path: root/Makefile
blob: 98c23234a3e021fe9c5a386ac5da2f919d095735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CXX = g++
CXXFLAGS = -Wall -Wextra -pedantic -std=c++11 -O2
LIBS = -lfltk
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) $^