diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 14:11:00 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 14:11:00 +0000 |
commit | af754e596a8dbb05ed8580c342e7fe02e08b28e0 (patch) | |
tree | b2f334c2b55ede42081aa6710a72da784547d8ea /src/modules/all.mk | |
parent | Initial commit. (diff) | |
download | freeradius-upstream/3.2.3+dfsg.tar.xz freeradius-upstream/3.2.3+dfsg.zip |
Adding upstream version 3.2.3+dfsg.upstream/3.2.3+dfsg
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/modules/all.mk | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/modules/all.mk b/src/modules/all.mk new file mode 100644 index 0000000..e1eafcc --- /dev/null +++ b/src/modules/all.mk @@ -0,0 +1,28 @@ +# +# Changes the behaviour of autoconf.h to undef definitions that would conflict +# with module config.h files. +# +CFLAGS += -DIS_MODULE=1 + +# +# If we haven't run configure, ignore the modules which require it. +# Otherwise, load in all of the module makefiles, including ones +# which have not yet been configured. We do the "sort" to remove +# duplicates. +# +ifeq "$(CONFIGURE_ARGS)" "" +SUBMAKEFILES := $(wildcard ${top_srcdir}/src/modules/rlm_*/all.mk) +else +SUBMAKEFILES := $(sort $(wildcard ${top_srcdir}/src/modules/rlm_*/all.mk) \ + $(patsubst %.in,%,$(wildcard ${top_srcdir}/src/modules/rlm_*/all.mk.in))) +endif + +SUBMAKEFILES += $(wildcard ${top_srcdir}/src/modules/proto_*/all.mk) + +ifeq "$(MAKECMDGOALS)" "reconfig" +src/modules/%/configure: src/modules/%/configure.ac $(wildcard $(top_builddir)/m4/*.m4) + @echo AUTOCONF $(dir $@) + @cd $(dir $@) && \ + $(ACLOCAL) --force -I $(top_builddir) -I $(top_builddir)/m4 && \ + $(AUTOCONF) --force +endif |