Commit 5eee9204 authored by Alexandre Julliard's avatar Alexandre Julliard

configure: Output maintainer-mode rules directly from configure.

parent 8e2becf3
......@@ -33,14 +33,6 @@ WINAPI_CHECK_EXTRA_FLAGS = --global
# Rules for re-running configure
$(srcdir)/configure: @MAINTAINER_MODE@ configure.ac aclocal.m4
cd $(srcdir) && autoconf --warnings=all
$(srcdir)/include/config.h.in: @MAINTAINER_MODE@ include/stamp-h.in
$(srcdir)/include/stamp-h.in: configure.ac aclocal.m4
cd $(srcdir) && autoheader --warnings=all
@echo timestamp > $@
config.status: configure
@./config.status --recheck
......
......@@ -15391,6 +15391,17 @@ ac_config_files="$ac_config_files Make.tmp:Make.vars.in:Makefile.in"
if test "x$enable_maintainer_mode" = xyes
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS "\$(srcdir)/configure: configure.ac aclocal.m4
cd \$(srcdir) && autoconf --warnings=all
\$(srcdir)/include/config.h.in: include/stamp-h.in
\$(srcdir)/include/stamp-h.in: configure.ac aclocal.m4
cd \$(srcdir) && autoheader --warnings=all
@echo timestamp > \$@"
fi
if test -n "$with_wine64"
then
wine_fn_append_rule ALL_MAKEFILE_DEPENDS "all: fonts server $with_wine64/loader/wine $with_wine64/loader/wine-preloader
......
......@@ -2939,6 +2939,17 @@ AC_CONFIG_FILES([Make.tmp:Make.vars.in:Makefile.in])
dnl Some final makefile rules
if test "x$enable_maintainer_mode" = xyes
then
WINE_APPEND_RULE([ALL_MAKEFILE_DEPENDS],
[\$(srcdir)/configure: configure.ac aclocal.m4
cd \$(srcdir) && autoconf --warnings=all
\$(srcdir)/include/config.h.in: include/stamp-h.in
\$(srcdir)/include/stamp-h.in: configure.ac aclocal.m4
cd \$(srcdir) && autoheader --warnings=all
@echo timestamp > \$[@]])
fi
if test -n "$with_wine64"
then
WINE_APPEND_RULE([ALL_MAKEFILE_DEPENDS],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment