Added tags file for faster code navigation.
[Helpful for newbies like me]
This commit is contained in:
parent
907ed0ac6f
commit
4f0cda235a
|
@ -42,3 +42,5 @@ htdocs/
|
|||
ipch
|
||||
*.opensdf
|
||||
*.orig
|
||||
|
||||
tags
|
||||
|
|
3
Makefile
3
Makefile
|
@ -113,6 +113,9 @@ man/cppcheck.1: $(MAN_SOURCE)
|
|||
|
||||
$(XP) $(DB2MAN) $(MAN_SOURCE)
|
||||
|
||||
tags:
|
||||
ctags -R --exclude=doxyoutput .
|
||||
|
||||
install: cppcheck
|
||||
install -d ${BIN}
|
||||
install cppcheck ${BIN}
|
||||
|
|
|
@ -237,6 +237,8 @@ int main(int argc, char **argv)
|
|||
fout << "man:\tman/cppcheck.1\n\n";
|
||||
fout << "man/cppcheck.1:\t$(MAN_SOURCE)\n\n";
|
||||
fout << "\t$(XP) $(DB2MAN) $(MAN_SOURCE)\n\n";
|
||||
fout << "tags:\n";
|
||||
fout << "\tctags -R --exclude=doxyoutput .\n\n";
|
||||
fout << "install:\tcppcheck\n";
|
||||
fout << "\tinstall -d ${BIN}\n";
|
||||
fout << "\tinstall cppcheck ${BIN}\n\n";
|
||||
|
|
Loading…
Reference in New Issue