]>
Commit | Line | Data |
---|---|---|
5fcc0986 VZ |
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 | # RCS-ID: $Id$ | |
6 | # Copyright: (c) 2007 Vadim Zeitlin <vadim@wxwindows.org> | |
7 | # Licence: wxWindows licence | |
8 | ############################################################################## | |
9 | ||
10 | # this function should be called with a single parameter containing addition | |
11 | # port-specific directories to scan | |
78014c10 | 12 | create_tags() |
5fcc0986 VZ |
13 | { |
14 | ctags --totals --c++-kinds=+px --language-force=c++ \ | |
977dcce7 | 15 | --exclude=include/wx/vms_x_fix.h \ |
1d525243 | 16 | -I @misc/scripts/ctags.ignore \ |
5fcc0986 | 17 | include/wx/*.h \ |
6ed05f19 | 18 | include/wx/private/*.h \ |
5fcc0986 VZ |
19 | include/wx/aui/*.h \ |
20 | include/wx/generic/*.h \ | |
7e81c36f | 21 | include/wx/generic/private/*.h \ |
5fcc0986 VZ |
22 | include/wx/$1/*.h \ |
23 | include/wx/$1/private/*.h \ | |
24 | include/wx/html/*.h \ | |
1c4293cb | 25 | include/wx/propgrid/*.h \ |
5fcc0986 | 26 | include/wx/protocol/*.h \ |
516fdb4f | 27 | include/wx/ribbon/*.h \ |
5fcc0986 VZ |
28 | include/wx/richtext/*.h \ |
29 | include/wx/xml/*.h \ | |
30 | include/wx/xrc/*.h \ | |
31 | include/wx/unix/*.h \ | |
0a7ce61e | 32 | include/wx/unix/private/*.h \ |
5fcc0986 VZ |
33 | src/aui/*.cpp \ |
34 | src/common/*.cpp \ | |
35 | src/generic/*.cpp \ | |
36 | src/$1/*.cpp \ | |
37 | src/html/*.cpp \ | |
2a2361cc | 38 | src/propgrid/*.cpp \ |
516fdb4f | 39 | src/ribbon/*.cpp \ |
5fcc0986 VZ |
40 | src/richtext/*.cpp \ |
41 | src/unix/*.cpp \ | |
42 | src/xml/*.cpp \ | |
43 | src/xrc/*.cpp | |
44 | } |