blob: c39971419751a8eb43ba3b440b2a7ae6ab963eb0 [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 \
Daniel Willmanndd7c0752022-02-17 16:32:15 +010027 hnbgw \
Pau Espin Pedrolb54acca2021-11-22 20:35:44 +010028 hnodeb \
Oliver Smith64d6cc42021-03-17 18:44:42 +010029 mgw \
30 mme \
31 msc \
32 ns \
Harald Weltec4ac9e02021-04-22 23:07:44 +020033 pcap-client \
Oliver Smith64d6cc42021-03-17 18:44:42 +010034 pcu \
35 pgw \
36 remsim \
37 sccp \
38 selftest \
39 sgsn \
40 simtrace \
41 sip \
42 smlc \
43 stp \
44 sysinfo \
Neels Hofmeyr2d292742022-06-07 23:58:05 +020045 upf \
Oliver Smith64d6cc42021-03-17 18:44:42 +010046 $(NULL)
Harald Welteadd12df2017-12-12 15:51:39 +010047
Stefan Sperlingb0ad3d82018-06-25 15:19:17 +020048NPROC=$(shell nproc 2>/dev/null)
49ifeq ($(NPROC),)
50NPROC=1
51endif
52PARALLEL_MAKE ?= -j$(NPROC)
Harald Welteadd12df2017-12-12 15:51:39 +010053
54# This master makefile allows you to do things like
55# make clean (remove all generated binary, c++ and symlinks)
56# make compile (compile ttcn3 into c++)
57# make all (compile c++ into executable)
58#
59# as well as per-subdirectory targets like
60#
61# make bsc/clean
62# make bsc/compile
63# make bsc/all
64# make bsc (equivalent to bsc/all)
65
Harald Welte68079822017-12-12 16:30:53 +010066default: deps all
67
Pau Espin Pedrol2bd2ea22023-05-04 12:58:27 +020068# Eclipse GitLab has rate limiting and sometimes to many concurrent conns fail.
69# If -jN fails, retry with -j1.
Harald Welte68079822017-12-12 16:30:53 +010070.PHONY: deps
71deps:
Pau Espin Pedrol2bd2ea22023-05-04 12:58:27 +020072 ($(MAKE) $(PARALLEL_MAKE) -C deps || $(MAKE) -j1 -C deps)
Harald Welteadd12df2017-12-12 15:51:39 +010073
Stefan Sperling61c11e92018-03-20 18:25:26 +010074# deps-update target for backwards compat; now does the same as 'make deps'
Harald Welte6bef5dd2018-02-15 18:31:22 +010075.PHONY: deps-update
76deps-update:
Stefan Sperling61c11e92018-03-20 18:25:26 +010077 $(MAKE) -C deps
Harald Welte6bef5dd2018-02-15 18:31:22 +010078
Harald Welteadd12df2017-12-12 15:51:39 +010079compile: $(foreach dir,$(SUBDIRS),$(dir)/compile)
80clean: $(foreach dir,$(SUBDIRS),$(dir)/clean)
81all: $(foreach dir,$(SUBDIRS),$(dir)/all)
82
83define DIR_Makefile_template
84$(1)/Makefile:
85 (cd $(1) && ./gen_links.sh && ./regen_makefile.sh)
86endef
87
88define DIR_compile_template
89.PHONY: $(1)/compile
Harald Weltef6f78462017-12-12 17:31:25 +010090$(1)/compile: deps $(1)/Makefile
Harald Welteadd12df2017-12-12 15:51:39 +010091 $(MAKE) -C $(1) compile
92endef
93
94define DIR_clean_template
95.PHONY: $(1)/clean
96$(1)/clean: $(1)/Makefile
97 $(MAKE) -C $(1) clean
98 (cd $(1) && ../rmlinks.sh && rm Makefile)
99endef
100
101define DIR_all_template
102$(1): $(1)/all
103.PHONY: $(1)/all
Harald Weltef6f78462017-12-12 17:31:25 +0100104$(1)/all: deps $(1)/Makefile
Harald Welteadd12df2017-12-12 15:51:39 +0100105 $(MAKE) -C $(1) compile
106 $(MAKE) $(PARALLEL_MAKE) -C $(1)
107endef
108
109$(foreach dir,$(SUBDIRS), \
110 $(eval $(call DIR_Makefile_template,$(dir))) \
111 $(eval $(call DIR_compile_template,$(dir))) \
112 $(eval $(call DIR_clean_template,$(dir))) \
113 $(eval $(call DIR_all_template,$(dir))) \
114 )
Vadim Yanitskiy600ebb22021-12-02 20:01:07 +0300115
Pau Espin Pedrolc24a18c2022-05-17 19:15:17 +0200116.PHONY: tags regen-diameter-types-ttcn
Vadim Yanitskiy600ebb22021-12-02 20:01:07 +0300117tags:
118 find $(shell pwd) \
119 -type f -name "*.ttcn" -o \
120 -type f -name "*.ttcnpp" | \
121 xargs ctags
Pau Espin Pedrolc24a18c2022-05-17 19:15:17 +0200122
123regen-diameter-types-ttcn:
124 (cd library/ && ./regen-DIAMETER_Types_ttcn.sh)