2007-08-30 01:57:39 +02:00
|
|
|
# these are the headers for your project
|
2009-05-20 17:40:20 +02:00
|
|
|
noinst_HEADERS = $(srcdir)/*.h
|
2007-08-30 01:57:39 +02:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
# APPLICATION SECTION
|
|
|
|
#########################################################################
|
|
|
|
# this is the program that gets installed. it's name is used for all
|
|
|
|
# of the other Makefile.am variables
|
|
|
|
bin_PROGRAMS = xmlcopyeditor
|
|
|
|
bindir = ${prefix}/bin
|
2009-05-20 17:40:20 +02:00
|
|
|
xmlcopyeditordir = ${datarootdir}/xmlcopyeditor
|
|
|
|
pixmapdir = ${datarootdir}/pixmaps
|
|
|
|
desktopdir = ${datarootdir}/applications
|
2007-08-30 01:57:39 +02:00
|
|
|
|
|
|
|
# the application source, library search path, and link libraries
|
|
|
|
xmlcopyeditor_SOURCES = xmlcopyeditor.cpp associatedialog.cpp casehandler.cpp \
|
|
|
|
contexthandler.cpp globalreplacedialog.cpp housestyle.cpp \
|
|
|
|
housestylereader.cpp myhtmlpane.cpp nocasecompare.cpp readfile.cpp \
|
2008-01-22 00:06:36 +01:00
|
|
|
replace.cpp styledialog.cpp wraplibxml.cpp \
|
2007-08-30 01:57:39 +02:00
|
|
|
wrapregex.cpp wraptempfilename.cpp xmlassociatedtd.cpp xmlassociatexsd.cpp \
|
|
|
|
xmlassociatexsl.cpp xmlctrl.cpp xmldoc.cpp xmlencodinghandler.cpp xmlfilterreader.cpp \
|
|
|
|
xmlpromptgenerator.cpp xmlrulereader.cpp xmlschemalocator.cpp xmlutf8reader.cpp xsllocator.cpp \
|
|
|
|
wrapexpat.cpp mypropertysheet.cpp rule.cpp housestylewriter.cpp myipc.cpp aboutdialog.cpp pathresolver.cpp mynotebook.cpp \
|
2007-09-28 22:30:52 +02:00
|
|
|
insertpanel.cpp xmlwordcount.cpp getword.cpp locationpanel.cpp catalogresolver.cpp getlinuxappdir.cpp \
|
2007-08-30 01:57:39 +02:00
|
|
|
xmlparseschemans.cpp xmlshallowvalidator.cpp wrapxerces.cpp \
|
2009-01-18 00:46:44 +01:00
|
|
|
findreplacepanel.cpp commandpanel.cpp xercescatalogresolver.cpp \
|
2008-07-09 00:54:48 +02:00
|
|
|
binaryfile.cpp xmlencodingspy.cpp wrapaspell.cpp validationthread.cpp \
|
2008-07-02 01:23:22 +02:00
|
|
|
xmlcopyeditor.spec xmlcopyeditor.png custom.xpm \
|
2007-08-30 01:57:39 +02:00
|
|
|
xmlcopyeditor.desktop
|
2009-05-20 17:40:20 +02:00
|
|
|
# rulesets png rng xpm templates copying help po
|
|
|
|
|
2007-08-30 01:57:39 +02:00
|
|
|
xmlcopyeditor_LDFLAGS = $(WX_LIBS) \
|
2008-01-22 00:06:36 +01:00
|
|
|
-lexpat -lxslt -lxml2 -lpcre -lxerces-c -laspell
|
2007-08-30 01:57:39 +02:00
|
|
|
|
2009-05-20 17:40:20 +02:00
|
|
|
nobase_xmlcopyeditor_DATA = $(srcdir)/png/*.png\
|
|
|
|
$(srcdir)/rulesets/*.* \
|
|
|
|
$(srcdir)/rng/*.rng \
|
|
|
|
$(srcdir)/rng/*.rnc \
|
|
|
|
$(srcdir)/rng/exclude/*.rng \
|
|
|
|
$(srcdir)/rng/modules/*.rng \
|
|
|
|
$(srcdir)/xpm/*.xpm \
|
|
|
|
$(srcdir)/templates/*.xml \
|
|
|
|
$(srcdir)/templates/*.dtd \
|
|
|
|
$(srcdir)/templates/*.xsl \
|
|
|
|
$(srcdir)/templates/*.rss \
|
|
|
|
$(srcdir)/templates/*.html \
|
|
|
|
$(srcdir)/templates/*.xtm \
|
|
|
|
$(srcdir)/templates/*.xsd \
|
|
|
|
$(srcdir)/templates/*.rng \
|
|
|
|
$(srcdir)/templates/*.lzx \
|
|
|
|
$(srcdir)/templates/*.xlf \
|
|
|
|
$(srcdir)/help/*.* $(srcdir)/help/html/*.* \
|
|
|
|
$(srcdir)/copying/*.txt $(srcdir)/copying/boost_shared_ptr/* \
|
|
|
|
$(srcdir)/copying/Expat/* $(srcdir)/copying/libxml2/* $(srcdir)/copying/libxslt/* \
|
|
|
|
$(srcdir)/copying/PCRE/* $(srcdir)/copying/Scintilla/* \
|
|
|
|
$(srcdir)/copying/wxStyledTextCtrl/* \
|
|
|
|
$(srcdir)/copying/wxStEditor/* \
|
|
|
|
$(srcdir)/copying/xmlcopyeditor/* \
|
|
|
|
$(srcdir)/copying/Aspell/* \
|
|
|
|
$(srcdir)/copying/Apache/LICENSE-2.0 \
|
|
|
|
$(srcdir)/copying/Apache/LICENSE-2_files/* \
|
|
|
|
$(srcdir)/po/sk/messages.mo \
|
|
|
|
$(srcdir)/po/sv/messages.mo \
|
|
|
|
$(srcdir)/po/fr/messages.mo \
|
|
|
|
$(srcdir)/po/de/messages.mo \
|
|
|
|
$(srcdir)/po/ru/messages.mo \
|
|
|
|
$(srcdir)/po/es/messages.mo \
|
|
|
|
$(srcdir)/po/zh_CN/messages.mo \
|
|
|
|
$(srcdir)/po/zh_TW/messages.mo \
|
|
|
|
$(srcdir)/po/uk_UA/messages.mo \
|
|
|
|
$(srcdir)/po/uk_UA/messages.mo \
|
|
|
|
$(srcdir)/po/en_us/messages.po
|
2007-08-30 01:57:39 +02:00
|
|
|
|
|
|
|
pixmap_DATA = xmlcopyeditor.png
|
|
|
|
|
2009-05-20 17:40:20 +02:00
|
|
|
desktop_DATA = xmlcopyeditor.desktop
|
2007-08-30 01:57:39 +02:00
|
|
|
|
|
|
|
INCLUDES = -I/usr/include/libxml2
|
|
|
|
|