xml-copy-editor-code/src/Makefile.am

80 lines
2.8 KiB
Makefile
Raw Normal View History

2007-08-30 01:57:39 +02:00
# these are the headers for your project
2009-10-05 00:54:47 +02:00
noinst_HEADERS = *.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-10-05 00:54:47 +02:00
xmlcopyeditordir = ${prefix}/share/xmlcopyeditor
pixmapdir = /usr/share/pixmaps
applicationsdir = /usr/share/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 \
binaryfile.cpp xmlencodingspy.cpp wrapaspell.cpp validationthread.cpp \
2009-10-05 00:54:47 +02:00
wrapdaisy.cpp exportdialog.cpp mp3album.cpp xmlprodnote.cpp \
rulesets png rng xpm templates copying help po \
2008-07-02 01:23:22 +02:00
xmlcopyeditor.spec xmlcopyeditor.png custom.xpm \
2007-08-30 01:57:39 +02:00
xmlcopyeditor.desktop
xmlcopyeditor_LDFLAGS = $(WX_LIBS) \
2009-10-05 00:54:47 +02:00
-lexpat -lxslt -lxml2 -lpcre -lxerces-c $(ASPELL_LIBS) $(ENCHANT_LIBS)
2007-08-30 01:57:39 +02:00
2009-10-05 00:54:47 +02:00
nobase_xmlcopyeditor_DATA = png/*.png \
rulesets/*.* \
rng/*.rng \
rng/*.rnc \
rng/exclude/*.rng \
rng/modules/*.rng \
xpm/*.xpm \
templates/*.xml \
templates/*.dtd \
templates/*.xsl \
templates/*.rss \
templates/*.html \
templates/*.xtm \
templates/*.xsd \
templates/*.rng \
templates/*.lzx \
templates/*.xlf \
help/*.* help/html/*.* \
copying/*.txt copying/boost_shared_ptr/* \
copying/Expat/* copying/libxml2/* copying/libxslt/* \
copying/PCRE/* copying/Scintilla/* \
copying/wxStyledTextCtrl/* \
copying/wxStEditor/* \
copying/xmlcopyeditor/* \
copying/Aspell/* \
copying/Apache/LICENSE-2.0 \
copying/Apache/LICENSE-2_files/* \
po/sk/messages.mo \
po/sv/messages.mo \
po/fr/messages.mo \
po/de/messages.mo \
po/ru/messages.mo \
po/es/messages.mo \
po/zh_CN/messages.mo \
po/zh_TW/messages.mo \
po/uk_UA/messages.mo \
po/uk_UA/messages.mo \
po/en_us/messages.po
2007-08-30 01:57:39 +02:00
pixmap_DATA = xmlcopyeditor.png
2009-10-05 00:54:47 +02:00
applications_DATA = xmlcopyeditor.desktop
2007-08-30 01:57:39 +02:00
2009-10-05 00:54:47 +02:00
INCLUDES = -I/usr/include/libxml2 $(ENCHANT_CFLAGS)
2007-08-30 01:57:39 +02:00