Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8ae19e commit 662371cCopy full SHA for 662371c
src/tools/make_ctags
@@ -1,7 +1,9 @@
1
#!/bin/sh
2
trap "rm -f /tmp/$$" 0 1 2 3 15
3
rm -f ./tags
4
-find `pwd`/ -type f -name '*.[chyl]' -print|xargs ctags -d -t -a -f tags
+find `pwd`/ \( -name _deadcode -a -prune \) -o \
5
+ -type f -name '*.[chyl]' -print|xargs ctags -d -t -a -f tags
6
+
7
sort tags >/tmp/$$ && mv /tmp/$$ tags
8
9
find . -type d -print |while read DIR
src/tools/make_mkid
@@ -1,5 +1,6 @@
-find `pwd`/ -type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -S.gen=C -
+ -type f -name '*.[chyl]' -print|sed 's;//;/;g' | mkid -S.gen=C -
do
0 commit comments