comparison src/Makefile @ 5860:747afb6a6de4 v7.4.273

updated for version 7.4.273 Problem: "make autoconf" and "make reconfig" may first run configure and then remove the output. Solution: Add these targets to the exceptions. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Tue, 29 Apr 2014 20:04:09 +0200
parents 75f222d67cea
children 1157079ca5f1
comparison
equal deleted inserted replaced
5859:d528535eadaa 5860:747afb6a6de4
1668 if test -f auto/config.cache && \ 1668 if test -f auto/config.cache && \
1669 grep '^ac_cv_env_CFLAGS_value=' auto/config.cache > /dev/null && \ 1669 grep '^ac_cv_env_CFLAGS_value=' auto/config.cache > /dev/null && \
1670 ! grep -x -F 'ac_cv_env_CFLAGS_value=$(CFLAGS)' auto/config.cache > /dev/null; then \ 1670 ! grep -x -F 'ac_cv_env_CFLAGS_value=$(CFLAGS)' auto/config.cache > /dev/null; then \
1671 rm auto/config.cache; \ 1671 rm auto/config.cache; \
1672 fi 1672 fi
1673 if test "X$(MAKECMDGOALS)" != "Xclean" -a "X$(MAKECMDGOALS)" != "Xdistclean"; then \ 1673 if test "X$(MAKECMDGOALS)" != "Xclean" \
1674 -a "X$(MAKECMDGOALS)" != "Xdistclean" \
1675 -a "X$(MAKECMDGOALS)" != "Xautoconf" \
1676 -a "X$(MAKECMDGOALS)" != "Xreconfig"; then \
1674 GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \ 1677 GUI_INC_LOC="$(GUI_INC_LOC)" GUI_LIB_LOC="$(GUI_LIB_LOC)" \
1675 CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \ 1678 CC="$(CC)" CPPFLAGS="$(CPPFLAGS)" CFLAGS="$(CFLAGS)" \
1676 LDFLAGS="$(LDFLAGS)" $(CONF_SHELL) srcdir="$(srcdir)" \ 1679 LDFLAGS="$(LDFLAGS)" $(CONF_SHELL) srcdir="$(srcdir)" \
1677 ./configure $(CONF_OPT_GUI) $(CONF_OPT_X) $(CONF_OPT_XSMP) \ 1680 ./configure $(CONF_OPT_GUI) $(CONF_OPT_X) $(CONF_OPT_XSMP) \
1678 $(CONF_OPT_DARWIN) $(CONF_OPT_FAIL) \ 1681 $(CONF_OPT_DARWIN) $(CONF_OPT_FAIL) \