1
0
Fork 0

don't rebuild tags everytime

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@7 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
1.1
Xuefer 17 years ago
parent 4b4962adfc
commit f35684be8b

@ -1,4 +1,5 @@
#!/bin/bash
SELF="$0"
if test -e make.inc ; then
. make.inc
@ -13,7 +14,7 @@ AWK=`which gawk 2>/dev/null || which awk 2>/dev/null `
make_all() {
make_opcode_spec_def.h
make_const_string
make_tags
test -e tags && echo tags exists, skipping. use \""$0" tags\" to rebuild || make_tags
}
make_clean() {
@ -56,7 +57,7 @@ make_opcode_spec_def.h() {
make_tags() {
if test -z "$CTAGS" ; then
echo ctags not found, skip building tags >&2
echo tool ctags not found, skip building tags >&2
return
fi

Loading…
Cancel
Save