forked from claritylab/lucida
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
38 lines (26 loc) · 657 Bytes
/
Copy pathMakefile
File metadata and controls
38 lines (26 loc) · 657 Bytes
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
DOCKER_CONTAINER=lucida
VERSION=latest
ifeq ($(THREADS),)
THREADS=$(shell grep -c ^processor /proc/cpuinfo)
endif
include ./Makefile.common
.PHONY: docker local
## build docker environment
docker:
docker build -t $(DOCKER_CONTAINER):$(VERSION) .
## build local environment
export LD_LIBRARY_PATH=/usr/local/lib
local:
cd tools && sudo make && cd ../lucida && make
start_all:
cd tools && ./start_all_tmux.sh
start_all_secure:
cd tools && ./start_all_tmux.sh secure
start_test_all:
cd tools && ./start_all_tmux.sh test
all_service:
cd lucida && make all
clean_all_service:
cd lucida && make clean
clean_all_tools:
cd tools && make clean