rename makemactags script to makeostags and extend it to work with either Carbon or Cocoa

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2009-06-19 23:30:47 +00:00
parent 85284ca4b2
commit 61dabbffe3
2 changed files with 16 additions and 4 deletions

View File

@ -1,4 +0,0 @@
#!/bin/sh
. `dirname $0`/makeunixtags.sh
create_tags osx/{carbon,corefoundation}

16
misc/scripts/makeosxtags.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
. `dirname $0`/makeunixtags.sh
osx_port=${1-carbon}
ctags --totals --c++-kinds=+px --language-force=c++ \
-f osx_$osx_port.tags \
-I @misc/scripts/ctags.ignore \
include/wx/osx/*.h \
include/wx/osx/core/*.h \
include/wx/osx/core/private/*.h \
include/wx/osx/private/*.h \
include/wx/osx/$osx_port/*.h \
include/wx/osx/$osx_port/private/*.h \
src/osx/*.cpp \
src/osx/core/*.cpp \
src/osx/$osx_port/*.{cpp,mm}