diff options
Diffstat (limited to 'src/modules/all.mk')
-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 |