summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <serg@serg.mysql.com>2001-12-03 23:31:59 +0100
committerunknown <serg@serg.mysql.com>2001-12-03 23:31:59 +0100
commiteb4c0fe7800c58a0b88e7f748fd42fdd9111d23b (patch)
tree4d6c56eddddf1b0810cc5d4b6231ea7cbbd60bf5
parentd06b344ab53efcb0ed6a2d27a3d9f69ca0dcf306 (diff)
parentbc8cb978d943b38f1ad03daf22fe7cdef8703815 (diff)
downloadmariadb-git-eb4c0fe7800c58a0b88e7f748fd42fdd9111d23b.tar.gz
Merge work:/home/bk/mysql-4.0
into serg.mysql.com:/usr/home/serg/Abk/mysql-4.0
-rw-r--r--Makefile.am6
-rwxr-xr-xbuild-tags11
2 files changed, 6 insertions, 11 deletions
diff --git a/Makefile.am b/Makefile.am
index 9df706dceb0..7257617b8e6 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -73,6 +73,12 @@ init-db: all
bin-dist: all
$(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
# Test installation
diff --git a/build-tags b/build-tags
deleted file mode 100755
index 90b957eb3bc..00000000000
--- a/build-tags
+++ /dev/null
@@ -1,11 +0,0 @@
-#! /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 {} \;