forked from nttdots/go-dots
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
23 lines (20 loc) · 658 Bytes
/
Copy pathMakefile
File metadata and controls
23 lines (20 loc) · 658 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
.PHONY: all
all:
$(CROSS_FLAGS) make -C mysql_udf/
$(CROSS_FLAGS) make -C dots_server/
$(CROSS_FLAGS) make -C dots_client/
$(CROSS_FLAGS) make -C dots_client_controller/
install:
$(CROSS_FLAGS) make -C mysql_udf/ install
$(CROSS_FLAGS) make -C dots_server/ install
$(CROSS_FLAGS) make -C dots_client/ install
$(CROSS_FLAGS) make -C dots_client_controller/ install
test:
$(CROSS_FLAGS) make -C dots_server/ test
$(CROSS_FLAGS) make -C dots_client/ test
$(CROSS_FLAGS) make -C dots_client_controller/ test
clean:
make -C mysql_notification_server clean
make -C dots_client clean
make -C dots_server clean
make -C dots_client_controller clean