forked from nicolaprezza/CTLSAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
45 lines (33 loc) · 865 Bytes
/
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
#------------------------------------------------------------------------------
SOURCE=\
formulas/AllTomorrow.cpp \
formulas/AllTomorrow.h \
formulas/AllUntil.cpp \
formulas/AllUntil.h \
formulas/Atom.cpp \
formulas/Atom.h \
formulas/Conjunction.cpp \
formulas/Conjunction.h \
formulas/ExistsTomorrow.cpp \
formulas/ExistsTomorrow.h \
formulas/ExistsUntil.cpp \
formulas/ExistsUntil.h \
formulas/Formula.cpp \
formulas/Formula.h \
formulas/Negation.cpp \
formulas/Negation.h \
parser/CTLParser.cpp \
parser/CTLParser.h \
tableau/Tableau.cpp \
tableau/Tableau.h \
common.h \
main.cpp \
BINARY=ctl-sat
#------------------------------------------------------------------------------
all: $(BINARY)
$(BINARY): $(SOURCE)
g++ -march=native -mtune=generic -O3 $(SOURCE) -o $(BINARY)
clean:
rm -f $(BINARY)
example:
./ctl-sat "~( AG(p->EXp) -> AG(p->EGp) )"