blob: 05670817ff7a3134fa3d19517b7197b0c0dd304d [file] [log] [blame]
Harald Welte0cdf0712019-06-19 18:15:38 +02001# Copyright 2017 Harald Welte
2# Copyright 2018 sysmocom - s.f.m.c. GmbH
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
Oliver Smith64d6cc42021-03-17 18:44:42 +010016SUBDIRS= \
17 bsc \
18 bsc-nat \
19 bts \
20 cbc \
21 ccid \
22 fr \
23 fr-net \
24 gbproxy \
25 ggsn_tests \
26 hlr \
27 mgw \
28 mme \
29 msc \
30 ns \
Harald Weltec4ac9e02021-04-22 23:07:44 +020031 pcap-client \
Oliver Smith64d6cc42021-03-17 18:44:42 +010032 pcu \
33 pgw \
34 remsim \
35 sccp \
36 selftest \
37 sgsn \
38 simtrace \
39 sip \
40 smlc \
41 stp \
42 sysinfo \
43 $(NULL)
Harald Welteadd12df2017-12-12 15:51:39 +010044
Stefan Sperlingb0ad3d82018-06-25 15:19:17 +020045NPROC=$(shell nproc 2>/dev/null)
46ifeq ($(NPROC),)
47NPROC=1
48endif
49PARALLEL_MAKE ?= -j$(NPROC)
Harald Welteadd12df2017-12-12 15:51:39 +010050
51# This master makefile allows you to do things like
52# make clean (remove all generated binary, c++ and symlinks)
53# make compile (compile ttcn3 into c++)
54# make all (compile c++ into executable)
55#
56# as well as per-subdirectory targets like
57#
58# make bsc/clean
59# make bsc/compile
60# make bsc/all
61# make bsc (equivalent to bsc/all)
62
Harald Welte68079822017-12-12 16:30:53 +010063default: deps all
64
65.PHONY: deps
66deps:
67 $(MAKE) -C deps
Harald Welteadd12df2017-12-12 15:51:39 +010068
Stefan Sperling61c11e92018-03-20 18:25:26 +010069# deps-update target for backwards compat; now does the same as 'make deps'
Harald Welte6bef5dd2018-02-15 18:31:22 +010070.PHONY: deps-update
71deps-update:
Stefan Sperling61c11e92018-03-20 18:25:26 +010072 $(MAKE) -C deps
Harald Welte6bef5dd2018-02-15 18:31:22 +010073
Harald Welteadd12df2017-12-12 15:51:39 +010074compile: $(foreach dir,$(SUBDIRS),$(dir)/compile)
75clean: $(foreach dir,$(SUBDIRS),$(dir)/clean)
76all: $(foreach dir,$(SUBDIRS),$(dir)/all)
77
78define DIR_Makefile_template
79$(1)/Makefile:
80 (cd $(1) && ./gen_links.sh && ./regen_makefile.sh)
81endef
82
83define DIR_compile_template
84.PHONY: $(1)/compile
Harald Weltef6f78462017-12-12 17:31:25 +010085$(1)/compile: deps $(1)/Makefile
Harald Welteadd12df2017-12-12 15:51:39 +010086 $(MAKE) -C $(1) compile
87endef
88
89define DIR_clean_template
90.PHONY: $(1)/clean
91$(1)/clean: $(1)/Makefile
92 $(MAKE) -C $(1) clean
93 (cd $(1) && ../rmlinks.sh && rm Makefile)
94endef
95
96define DIR_all_template
97$(1): $(1)/all
98.PHONY: $(1)/all
Harald Weltef6f78462017-12-12 17:31:25 +010099$(1)/all: deps $(1)/Makefile
Harald Welteadd12df2017-12-12 15:51:39 +0100100 $(MAKE) -C $(1) compile
101 $(MAKE) $(PARALLEL_MAKE) -C $(1)
102endef
103
104$(foreach dir,$(SUBDIRS), \
105 $(eval $(call DIR_Makefile_template,$(dir))) \
106 $(eval $(call DIR_compile_template,$(dir))) \
107 $(eval $(call DIR_clean_template,$(dir))) \
108 $(eval $(call DIR_all_template,$(dir))) \
109 )