-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
69 lines (51 loc) · 1.38 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# TARGET NAMES
TARGET = VASimVis
# DIRECTORIES
VASIM = VASim
MNRL = $(VASIM)/libs/MNRL/C++
JSON11 = $(MNRL)/lib/json11
JSON = $(MNRL)/lib/valijson/thirdparty/nlohmann-json-1.1.0
PUGI = $(VASIM)/libs/pugixml/src
# DEPENDENCIES
LIBVASIM = $(VASIM)/libvasim.a
LIBMNRL = $(MNRL)/libmnrl.a
JSON11_HPP = $(JSON11)/json11.hpp
# FLAGS
IDIRS=-Iinclude -I$(MNRL)/include -I$(VASIM)/include -I$(PUGI) -I$(JSON) -I$(JSON11)
# LIBRARIES
# witty
WTLIBS=-lwthttp -lwt
# boost
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Linux)
BOOST_THREAD=boost_thread
endif
ifeq ($(UNAME_S),Darwin)
BOOST_THREAD=boost_thread-mt
endif
BOOSTLIBS= -lboost_random -lboost_regex -lboost_signals -lboost_system -l$(BOOST_THREAD) -lboost_filesystem -lboost_program_options -lboost_date_time
CXXFLAGS= -O3 -std=c++11 $(IDIRS) $(WTLIBS) $(BOOSTLIBS)
CC=g++
all: submodule_init auto_viewer
auto_viewer: vasim
$(info )
$(info Compiling Automata Playground...)
$(MAKE) $(TARGET)
vasim:
$(MAKE) -C ./$(VASIM)
$(TARGET): VASimVis.cc
$(CC) -o $@ $^ $(LIBVASIM) $(LIBMNRL) $(CXXFLAGS)
.PHONY: clean cleanplay cleanvasim submodule_init auto_viewer vasim run
clean: cleanplay cleanvasim
cleanplay:
$(info )
$(info Cleaning Automata Playground...)
rm -f VASimVis
cleanvasim:
cd VASim && $(MAKE) clean
submodule_init:
$(info )
$(info Updating submodules...)
@git submodule update --init --recursive
run: all
./run.sh