]> granicus.if.org Git - postgresql/blob - src/tools/make_etags
MSVC: Exclude 'brin' contrib module
[postgresql] / src / tools / make_etags
1 #!/bin/sh
2
3 # src/tools/make_etags
4
5 rm -f ./TAGS
6
7 find `pwd`/ -type f -name '*.[chyl]' -print |
8         xargs etags --append -o TAGS
9
10 find . \( -name CVS -prune \) -o \( -name .git -prune \) -o -type d -print |
11 while read DIR
12 do      [ "$DIR" != "." ] && ln -f -s `pwd`/TAGS "$DIR"
13 done