forked from reborndb/reborn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
47 lines (35 loc) · 1.09 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
# if we install godep, we will use godep to build our application.
GODEP_PATH:=$(shell godep path 2>/dev/null)
GO=go
ifdef GODEP_PATH
GO=godep go
endif
all: build
@tar -cf deploy.tar bin sample
build: build-proxy build-config build-server build-agent build-daemon
build-proxy:
$(GO) build -o bin/reborn-proxy ./cmd/proxy
build-config:
$(GO) build -o bin/reborn-config ./cmd/cconfig
@rm -rf bin/assets && cp -r cmd/cconfig/assets bin/
build-server:
@mkdir -p bin
make -j4 -C extern/redis-2.8.21/
@cp -f extern/redis-2.8.21/src/redis-server bin/reborn-server
build-agent:
$(GO) build -o bin/reborn-agent ./cmd/agent
build-daemon:
$(GO) build -o bin/reborn-daemon ./cmd/daemon
clean:
@rm -rf bin
@rm -rf cmd/agent/var
@rm -f *.rdb *.out *.log *.dump deploy.tar
@rm -f extern/Dockerfile
@rm -f sample/log/*.log sample/nohup.out
@if [ -d test ]; then cd test && rm -f *.out *.log *.rdb; fi
distclean: clean
@make --no-print-directory --quiet -C extern/redis-2.8.21 clean
gotest:
$(GO) test -tags 'all' ./pkg/... -race -cover
agent_test: build
$(GO) test -tags 'all' ./cmd/agent/... -race -cover