forked from documentdb/documentdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (22 loc) · 692 Bytes
/
Makefile
File metadata and controls
30 lines (22 loc) · 692 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
# Delegate all rules to sub directories.
Makefile:;
.DEFAULT_GOAL := .DEFAULT
.PHONY: %
check-no-distributed:
$(MAKE) -C pg_documentdb_core check
$(MAKE) -C pg_documentdb check
install-no-distributed:
$(MAKE) -C pg_documentdb_core install
$(MAKE) -C pg_documentdb install
install-documentdb-rum:
$(MAKE) -C internal/pg_documentdb_extended_rum install
.DEFAULT:
$(MAKE) -C pg_documentdb_core
$(MAKE) -C pg_documentdb
$(MAKE) -C internal/pg_documentdb_distributed
$(MAKE) -C internal/pg_documentdb_extended_rum
%:
$(MAKE) -C pg_documentdb_core $@
$(MAKE) -C pg_documentdb $@
$(MAKE) -C internal/pg_documentdb_distributed $@
$(MAKE) -C internal/pg_documentdb_extended_rum $@