-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
77 lines (60 loc) · 2.07 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
70
71
72
73
74
75
76
77
# Copyright 2017 IBM Corp. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
include components.mk
.PHONY: build buildsrc buildtgt clean fuse dmapi prepare messages communication common connector client server
# for executing code
export PATH := $(PATH):$(CURDIR)/bin
export ROOTDIR := $(CURDIR)
export CONNECTOR_TYPE := fuse
fuse: CONNECTOR_TYPE = fuse
fuse: build
dmapi: CONNECTOR_TYPE = dmapi
dmapi: build
ifeq ($(wildcard src/connector/$(CONNECTOR_TYPE)),)
$(error connector $(CONNECTOR_TYPE) does not exit)
endif
all: build
messages:
$(MAKE) -C $(MESSAGES) build
communication: messages
$(MAKE) -C $(COMMUNICATION) build
common: messages communication
$(MAKE) -C $(COMMON) deps
$(MAKE) -j -C $(COMMON) buildsrc
$(MAKE) -C $(COMMON) buildtgt
connector: messages communication common
$(MAKE) -C $(CONNECTOR) deps
$(MAKE) -j -C $(CONNECTOR) buildsrc
$(MAKE) -C $(CONNECTOR) buildtgt
client: messages communication common connector
$(MAKE) -C $(CLIENT) deps
$(MAKE) -j -C $(CLIENT) buildsrc
$(MAKE) -C $(CLIENT) buildtgt
server: messages communication common connector
$(MAKE) -C $(SERVER) deps
$(MAKE) -j -C $(SERVER) buildsrc
$(MAKE) -C $(SERVER) buildtgt
build: prepare messages communication connector client server
clean:
$(MAKE) -C $(MESSAGES) clean
$(MAKE) -C $(COMMUNICATION) clean
$(MAKE) -C $(CONNECTOR) clean
$(MAKE) -C $(CLIENT) clean
$(MAKE) -C $(SERVER) clean
prepare:
@if [ -d ".git/hooks" ]; then \
ln -sf ../../.hooks/pre-commit .git/hooks; \
ln -sf ../../.hooks/post-commit .git/hooks; \
ln -sf ../../.hooks/pre-push .git/hooks; \
fi