Commit 2bb46b6c authored by serg@serg.mysql.com's avatar serg@serg.mysql.com

tags: target added for Sasha

parent 49b6f02d
...@@ -73,6 +73,12 @@ init-db: all ...@@ -73,6 +73,12 @@ init-db: all
bin-dist: all bin-dist: all
$(top_builddir)/scripts/make_binary_distribution $(top_builddir)/scripts/make_binary_distribution
tags:
rm -f TAGS
find -not -path \*SCCS\* -and \
\( -name \*.cc -or -name \*.h -or -name \*.yy -or -name \*.c \) \
-print -exec etags -o TAGS --append {} \;
.PHONY: init-db bin-dist .PHONY: init-db bin-dist
# Test installation # Test installation
......
#! /bin/sh
if [ ! -f configure.in ] ; then
echo "$0 must be run from MySQL source root"
exit 1
fi
rm -f TAGS
find -not -path \*SCCS\* -and \
\( -name \*.cc -or -name \*.h -or -name \*.yy -or -name \*.c \) \
-print -exec etags -o TAGS --append {} \;
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