Revision: | 1.2 |
Committed: | Tue Sep 15 16:05:49 2020 UTC (3 years ago) by arta |
Branch: | MAIN |
CVS Tags: | Ver_LATEST, Ver_9-41, Ver_9-5, HEAD |
Changes since 1.1: | +14 -2 lines |
Log Message: | changes to base to remove rpc dependency when SUMS_USEMTSUMS_ALL is defined |
# | Content |
---|---|
1 | sp := $(sp).x |
2 | dirstack_$(sp) := $(d) |
3 | d := $(dir) |
4 | |
5 | USE_RPC := |
6 | |
7 | ifneq ($(SUMS_USEMTSUMS),1) |
8 | USE_RPC := yes |
9 | endif |
10 | |
11 | ifneq ($(SUMS_USEMTSUMS_ALL),1) |
12 | USE_RPC := yes |
13 | endif |
14 | |
15 | # Subdirectories. Directory-specific rules are optional here. The |
16 | # order NOT matter. |
17 | ifdef USE_RPC |
18 | dir := $(d)/apps |
19 | -include $(SRCDIR)/$(dir)/Rules.mk |
20 | endif |
21 | |
22 | # Standard things |
23 | d := $(dirstack_$(sp)) |
24 | sp := $(basename $(sp)) |