SUBDIRS = KWidgetStreamer KMultiFormListBox picts predefined KDE_ICON=AUTO AM_CPPFLAGS = -DTQT_NO_CAST_ASCII -I$(srcdir)/KWidgetStreamer -I$(srcdir)/KMultiFormListBox $(all_includes) # (useless) noinst_HEADERS = \ kregexpeditorgui.h editorwindow.h regexpwidget.h drag.h limitedcharlineedit.h regexp.h selectablelineedit.h \ dragaccepter.h repeatwidget.h concwidget.h textwidget.h characterswidget.h zerowidgets.h multicontainerwidget.h \ scrollededitorwindow.h compoundwidget.h singlecontainerwidget.h widgetfactory.h dcbutton.h charselector.h \ lookaheadwidget.h textregexp.h textrangeregexp.h repeatregexp.h lookaheadregexp.h concregexp.h altnregexp.h \ positionregexp.h dotregexp.h infopage.h kregexpeditorprivate.h compoundregexp.h pair.h triple.h myfontmetrics.h \ regexpbuttons.h userdefinedregexps.h auxbuttons.h verifier.h verifybuttons.h errormap.h qtregexphighlighter.h \ regexpconverter.h qtregexpconverter.h emacsregexpconverter.h regexphighlighter.h util.h # The library contains all the code that is shared between the module and the app lib_LTLIBRARIES = libkregexpeditorcommon.la libkregexpeditorcommon_la_SOURCES = \ kregexpeditorgui.cpp editorwindow.cpp regexpwidget.cpp drag.cpp concwidget.cpp zerowidgets.cpp dragaccepter.cpp \ repeatwidget.cpp characterswidget.cpp altnwidget.cpp limitedcharlineedit.cpp textregexp.cpp textrangeregexp.cpp \ concregexp.cpp altnregexp.cpp positionregexp.cpp dotregexp.cpp repeatregexp.cpp textwidget.cpp \ selectablelineedit.cpp multicontainerwidget.cpp scrollededitorwindow.cpp compoundwidget.cpp \ singlecontainerwidget.cpp widgetfactory.cpp dcbutton.cpp gen_qregexplexer.cpp gen_qregexpparser.cpp \ charselector.cpp lookaheadregexp.cpp lookaheadwidget.cpp regexp.cpp infopage.cpp kregexpeditorprivate.cpp \ compoundregexp.cpp auxbuttons.cpp myfontmetrics.cpp regexpbuttons.cpp userdefinedregexps.cpp verifier.cpp \ verifybuttons.cpp errormap.cpp qtregexphighlighter.cpp regexpconverter.cpp qtregexpconverter.cpp \ emacsregexpconverter.cpp regexphighlighter.cpp util.cpp libkregexpeditorcommon_la_LDFLAGS = $(all_libraries) -version-info 1:0:0 -no-undefined libkregexpeditorcommon_la_LIBADD = KMultiFormListBox/libtdemultiformlistbox.la \ KWidgetStreamer/libkwidgetstreamer.la $(LIB_TDEIO) $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) METASOURCES = AUTO service_DATA = kregexpeditorgui.desktop servicedir = $(kde_servicesdir) #### The dynamically-loadable module (its interface is defined in tdelibs) kde_module_LTLIBRARIES = libkregexpeditorgui.la libkregexpeditorgui_la_SOURCES = kregexpeditorfactory.cpp libkregexpeditorgui_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN) -module libkregexpeditorgui_la_LIBADD = libkregexpeditorcommon.la #### Binary bin_PROGRAMS = kregexpeditor kregexpeditor_SOURCES = main.cpp kregexpeditor_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor kregexpeditor_LDADD = libkregexpeditorcommon.la $(LIB_TDEIO) kregexpeditor_INCLUDES = $(all_includes) xdg_apps_DATA = kregexpeditor.desktop ##### Build rules for the parser .PHONY: parser parser: cd $(srcdir) && flex -Pqregexp -ogen_qregexplexer.cpp qregexpparser.l cd $(srcdir) && bison -d -p qregexp -o gen_qregexpparser.cpp qregexpparser.y messages: perl extractrc-from-regexp `find . -name "*.regexp"` > predefined-regexps.cpp $(XGETTEXT) *.cpp *.h */*.cpp */*.h -o $(podir)/kregexpeditor.pot