diff options
-rw-r--r-- | Makefile | 20 | ||||
-rw-r--r-- | configure.ac | 13 |
2 files changed, 31 insertions, 2 deletions
@@ -25,4 +25,24 @@ include $(topsrcdir)/build-aux/Makefile.head.mk at.subdirs += src +# intltoolize +std.gen_files += m4/intltool.m4 +std.gen_files += po/Makefile.in.in +# autoreconf +std.gen_files += aclocal.m4 +std.gen_files += automake.mk.in +std.gen_files += build-aux/compile +std.gen_files += build-aux/config.guess +std.gen_files += build-aux/config.sub +std.gen_files += build-aux/install-sh +std.gen_files += build-aux/ltmain.sh +std.gen_files += build-aux/missing +std.gen_files += m4/libtool.m4 +std.gen_files += m4/ltoptions.m4 +std.gen_files += m4/ltsugar.m4 +std.gen_files += m4/ltversion.m4 +std.gen_files += m4/lt~obsolete.m4 +std.gen_files += config.h.in +std.gen_files += configure + include $(topsrcdir)/build-aux/Makefile.tail.mk diff --git a/configure.ac b/configure.ac index a4ffebea06..4e6f37f528 100644 --- a/configure.ac +++ b/configure.ac @@ -94,7 +94,6 @@ AC_PROG_INSTALL AC_PROG_MKDIR_P AC_PROG_LEX AC_PROG_LN_S -AC_PROG_RANLIB AC_PROG_SED AC_PROG_YACC @@ -1516,7 +1515,17 @@ AC_CONFIG_FILES([ po/Makefile.in ]) -AC_OUTPUT +AC_OUTPUT([], [], [ +if test "$srcdir" != .; then + { + find "$srcdir" -name Makefile -printf '%P\n' + find "$srcdir" -name subdir.mk -printf '%P\n' + } | while read -r filename; do + mkdir -p "\$(dirname "\$filename")" + ln -srfT "$srcdir/\$filename" "\$filename" + done +fi +]) AC_MSG_RESULT([ $PACKAGE_NAME $VERSION |