################################################################################
#
# Run cscope and generate tags for the current project.
#
################################################################################
all:
cscope -Rbq;
find . -name \*.c -o -name \*.h | xargs ctags;
clean:
rm -rf cscope.in.out cscope.out cscope.po.out;
rm -rf tags;
################################################################################
阅读(1027) | 评论(0) | 转发(0) |