Commit d1e97195 authored by serg@serg.mysql.com's avatar serg@serg.mysql.com
Browse files

Merge work:/home/bk/mysql-4.0

into serg.mysql.com:/usr/home/serg/Abk/mysql-4.0
parents e78a11f0 2bb46b6c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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

build-tags

deleted100755 → 0
+0 −11
Original line number Diff line number Diff line
#! /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 {} \;