Remove all lines containing cvs/svn "$Id$" keyword.
[wxWidgets.git] / misc / scripts / makeunixtags.sh
1 ##############################################################################
2 # Name: misc/scripts/makeunixtags.sh
3 # Purpose: create tags file for a wxWidgets port under a Unix system
4 # Created: 2007-05-05
5 # Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org>
6 # Licence: wxWindows licence
7 ##############################################################################
8
9 # this function should be called with a single parameter containing addition
10 # port-specific directories to scan
11 create_tags()
12 {
13 ctags --totals --c++-kinds=+px --language-force=c++ \
14 --exclude=include/wx/vms_x_fix.h \
15 -I @misc/scripts/ctags.ignore \
16 include/wx/*.h \
17 include/wx/private/*.h \
18 include/wx/aui/*.h \
19 include/wx/generic/*.h \
20 include/wx/generic/private/*.h \
21 include/wx/$1/*.h \
22 include/wx/$1/private/*.h \
23 include/wx/html/*.h \
24 include/wx/propgrid/*.h \
25 include/wx/protocol/*.h \
26 include/wx/ribbon/*.h \
27 include/wx/richtext/*.h \
28 include/wx/xml/*.h \
29 include/wx/xrc/*.h \
30 include/wx/unix/*.h \
31 include/wx/unix/private/*.h \
32 src/aui/*.cpp \
33 src/common/*.cpp \
34 src/generic/*.cpp \
35 src/$1/*.cpp \
36 src/html/*.cpp \
37 src/propgrid/*.cpp \
38 src/ribbon/*.cpp \
39 src/richtext/*.cpp \
40 src/unix/*.cpp \
41 src/xml/*.cpp \
42 src/xrc/*.cpp
43 }