1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
SUBDIRS = resources
AM_CPPFLAGS = $(WX_CXXFLAGS) \
-I$(top_srcdir)/src/include \
-I$(top_srcdir)/src/sdk/wxscintilla/include \
-I$(top_srcdir)/src/include/mozilla_chardet \
-I$(top_srcdir)/src/include/mozilla_chardet/mfbt \
-I$(top_srcdir)/src/include/mozilla_chardet/nsprpub/pr/include \
-I$(top_srcdir)/src/include/mozilla_chardet/xpcom \
-I$(top_srcdir)/src/include/mozilla_chardet/xpcom/base \
-I$(top_srcdir)/src/include/mozilla_chardet/xpcom/glue \
-I$(srcdir)/../wxContribItems/wxthings/include
pluginlibdir = $(pkglibdir)/plugins
pluginlib_LTLIBRARIES = libThreadSearch.la
libThreadSearch_la_LDFLAGS = -module -version-info 0:1:0 -shared -no-undefined -avoid-version
libThreadSearch_la_LIBADD = ../../../sdk/libcodeblocks.la ../wxContribItems/wxthings/libwxcustombutton.la $(WX_LIBS)
libThreadSearch_la_SOURCES = DirectoryParamsPanel.cpp \
InsertIndexManager.cpp \
SearchInPanel.cpp \
TextFileSearcher.cpp \
TextFileSearcherRegEx.cpp \
TextFileSearcherText.cpp \
ThreadSearch.cpp \
ThreadSearchConfPanel.cpp \
ThreadSearchControlIds.cpp \
ThreadSearchEvent.cpp \
ThreadSearchFindData.cpp \
ThreadSearchLoggerBase.cpp \
ThreadSearchLoggerList.cpp \
ThreadSearchLoggerTree.cpp \
ThreadSearchThread.cpp \
ThreadSearchTrace.cpp \
ThreadSearchView.cpp \
ThreadSearchViewManagerBase.cpp \
ThreadSearchViewManagerLayout.cpp \
ThreadSearchViewManagerMessagesNotebook.cpp
noinst_HEADERS = DirectoryParamsPanel.h \
InsertIndexManager.h \
logging.h \
SearchInPanel.h \
TextFileSearcher.h \
TextFileSearcherRegEx.h \
TextFileSearcherText.h \
ThreadSearch.h \
ThreadSearchConfPanel.h \
ThreadSearchControlIds.h \
ThreadSearchEvent.h \
ThreadSearchFindData.h \
ThreadSearchLoggerBase.h \
ThreadSearchLoggerList.h \
ThreadSearchLoggerTree.h \
ThreadSearchThread.h \
ThreadSearchTrace.h \
ThreadSearchView.h \
ThreadSearchViewManagerBase.h \
ThreadSearchViewManagerLayout.h \
ThreadSearchViewManagerMessagesNotebook.h
EXTRA_DIST = $(srcdir)/*.cbp \
$(srcdir)/ThreadSearch.wxg \
$(srcdir)/update* \
$(srcdir)/manifest.xml
pkgdata_DATA = ThreadSearch.zip
CLEANFILES = $(pkgdata_DATA)
ThreadSearch.zip: manifest.xml
PWD=`pwd` cd $(srcdir) && zip $(PWD)/ThreadSearch.zip manifest.xml > /dev/null
|