-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (35 loc) · 1.25 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# ---------------------------------------------------------------------
# Compiler selection
# ---------------------------------------------------------------------
CCC = g++-8
# ---------------------------------------------------------------------
# Compiler options
# ---------------------------------------------------------------------
CCOPT = -O -std=c++17 -pthread -Wall -flto -pipe
# ---------------------------------------------------------------------
# Link options and libraries
# ---------------------------------------------------------------------
INCDIRS =
# ---------------------------------------------------------------------
# Temporary folder
# ---------------------------------------------------------------------
TARGET = mdpsolver
all: $(TARGET)
CCFLAGS = $(CCOPT)
SRC = $(shell find src -name *.cpp)
OBJ = $(SRC:%.cpp=%.o)
# ------------------------------------------------------------
clean:
/bin/rm -rf $(TARGET)
/bin/rm -rf $(OBJ)
/bin/rm -rf output/*
# ------------------------------------------------------------
# The code
# ------------------------------------------------------------
$(TARGET): $(OBJ)
$(CCC) $(CCFLAGS) -o $(TARGET) $(OBJ)
%.o: %.cpp
$(CCC) -c $(CCFLAGS) $< -o $@
# Local Variables:
# mode: makefile
# End: