From 50b37d4a27d3295a29afca2286f1a5a086142cec Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:49:46 +0200 Subject: Adding upstream version 3.2.1+dfsg. Signed-off-by: Daniel Baumann --- src/modules/all.mk | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/modules/all.mk (limited to 'src/modules/all.mk') 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 -- cgit v1.2.3