Rework tags targets in Windows makefiles to protect against old/stupid makes.

* lib-src/makefile.w32-in (tags): Remove target.
* src/makefile.w32-in (tags): Rename target to full-tags.
This commit is contained in:
Juanma Barranquero 2010-10-02 14:12:17 +02:00
parent affb61b481
commit 54b65f7b40
4 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2010-10-02 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (tags): Remove target.
2010-10-01 Eli Zaretskii <eliz@gnu.org>
* makefile.w32-in (tags, TAGS): New targets.

View file

@ -380,7 +380,6 @@ getopt.h: getopt_.h
### TAGS ###
tags: TAGS
TAGS: $(BLD)/etags.exe *.c *.h
$(BLD)/etags.exe *.c *.h

View file

@ -1,3 +1,7 @@
2010-10-02 Juanma Barranquero <lekktu@gmail.com>
* makefile.w32-in (tags): Rename target to full-tags.
2010-10-02 Eli Zaretskii <eliz@gnu.org>
* emacs.c (main): Remove !WINDOWSNT conditional.

View file

@ -335,8 +335,8 @@ nt-TAGS-nmake:
echo This target is not supported with NMake
exit -1
tags: TAGS TAGS-LISP ../nt/TAGS
.PHONY: tags
full-tags: TAGS TAGS-LISP ../nt/TAGS
.PHONY: full-tags
### DEPENDENCIES ###