]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
aclocal.m4 and acinclude.m4 are now gone
authorMatthew Newton <matthew-git@newtoncomputing.co.uk>
Thu, 29 Sep 2022 11:33:27 +0000 (12:33 +0100)
committerMatthew Newton <matthew-git@newtoncomputing.co.uk>
Thu, 29 Sep 2022 13:37:32 +0000 (14:37 +0100)
Makefile

index 2a20887b469dfcd65fc6b9cbe4893891c9d93b6b..5163e1cd884c513b42d526f86e44a328ac90b54a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -236,10 +236,11 @@ endif
 distclean: clean
        @-find src/modules -regex .\*/config[.][^.]*\$$ -delete
        @-find src/modules -name autom4te.cache -exec rm -rf '{}' \;
+       @-find src/modules -name aclocal.m4 -exec rm -rf '{}' \;
        @rm -rf config.cache config.log config.status libtool \
                src/include/radpaths.h src/include/stamp-h \
                libltdl/config.log libltdl/config.status \
-               libltdl/libtool autom4te.cache build
+               libltdl/libtool autom4te.cache build aclocal.m4
        @-find . ! -name configure.ac -name \*.in -print | \
                sed 's/\.in$$//' | \
                while read file; do rm -f $$file; done
@@ -280,7 +281,7 @@ ifeq "$(CONFIGURE_FILES)" "1"
 
 # Configure files depend on "in" files, and on the top-level macro files
 # If there are headers, run auto-header, too.
-src/%configure: src/%configure.ac acinclude.m4 aclocal.m4 $(wildcard $(dir $@)m4/*m4) | src/freeradius-devel
+src/%configure: src/%configure.ac $(wildcard $(dir $@)m4/*m4) | src/freeradius-devel
        @echo AUTOCONF $(dir $@)
        @cd $(dir $@) && \
                $(ACLOCAL) -I $(top_builddir)/m4 && \
@@ -292,7 +293,7 @@ src/%configure: src/%configure.ac acinclude.m4 aclocal.m4 $(wildcard $(dir $@)m4
        @touch $@
 
 # "%configure" doesn't match "configure"
-configure: configure.ac $(wildcard ac*.m4) $(wildcard m4/*.m4)
+configure: configure.ac $(wildcard m4/*.m4)
        @echo AUTOCONF $@
        @$(ACLOCAL) -I $(top_builddir)/m4
        @$(AUTOCONF)