comparison Makefile @ 9546:271f3ae34835 v7.4.2053

commit https://github.com/vim/vim/commit/e21d62435ef966b8adb40dee13ef9d6791316674 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 16 20:43:14 2016 +0200 patch 7.4.2053 Problem: Can't run scripttests in the top directory. Solution: Add targets to the top Makefile.
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Jul 2016 20:45:10 +0200
parents 58e749232bd7
children 62b7fb15ff7e
comparison
equal deleted inserted replaced
9545:33d883608abb 9546:271f3ae34835
30 @echo "If there are problems, cd to the src directory and run make there" 30 @echo "If there are problems, cd to the src directory and run make there"
31 cd src && $(MAKE) $@ 31 cd src && $(MAKE) $@
32 32
33 # Some make programs use the last target for the $@ default; put the other 33 # Some make programs use the last target for the $@ default; put the other
34 # targets separately to always let $@ expand to "first" by default. 34 # targets separately to always let $@ expand to "first" by default.
35 all install uninstall tools config configure reconfig proto depend lint tags types test testclean clean distclean: 35 all install uninstall tools config configure reconfig proto depend lint tags types test scripttests unittests testclean clean distclean:
36 @if test ! -f src/auto/config.mk; then \ 36 @if test ! -f src/auto/config.mk; then \
37 cp src/config.mk.dist src/auto/config.mk; \ 37 cp src/config.mk.dist src/auto/config.mk; \
38 fi 38 fi
39 @echo "Starting make in the src directory." 39 @echo "Starting make in the src directory."
40 @echo "If there are problems, cd to the src directory and run make there" 40 @echo "If there are problems, cd to the src directory and run make there"