diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:49:46 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-28 09:49:46 +0000 |
commit | 50b37d4a27d3295a29afca2286f1a5a086142cec (patch) | |
tree | 9212f763934ee090ef72d823f559f52ce387f268 /src/modules/all.mk | |
parent | Initial commit. (diff) | |
download | freeradius-50b37d4a27d3295a29afca2286f1a5a086142cec.tar.xz freeradius-50b37d4a27d3295a29afca2286f1a5a086142cec.zip |
Adding upstream version 3.2.1+dfsg.upstream/3.2.1+dfsgupstream
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 |