diff options
author | Stefano Karapetsas <[email protected]> | 2012-09-03 00:00:52 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-09-03 00:00:52 +0200 |
commit | 5ad91699940909223c167ef40de03e9a55a5a9c3 (patch) | |
tree | ddff7db24eab78d18c31cf622d202946c3251c3e /backend/xps/Makefile.am | |
parent | 25807110e3f2ba838e2105664922e39a68fc6e30 (diff) | |
download | atril-5ad91699940909223c167ef40de03e9a55a5a9c3.tar.bz2 atril-5ad91699940909223c167ef40de03e9a55a5a9c3.tar.xz |
add xps backend
xps backend is from evince
ported to MATE by Leandro Vital
Diffstat (limited to 'backend/xps/Makefile.am')
-rw-r--r-- | backend/xps/Makefile.am | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/backend/xps/Makefile.am b/backend/xps/Makefile.am new file mode 100644 index 00000000..2e0453bf --- /dev/null +++ b/backend/xps/Makefile.am @@ -0,0 +1,31 @@ +INCLUDES = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/libdocument \ + -DMATELOCALEDIR=\"$(datadir)/locale\" \ + -DATRIL_COMPILATION \ + $(BACKEND_CFLAGS) \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED) + +backend_LTLIBRARIES = libxpsdocument.la + +libxpsdocument_la_SOURCES = \ + xps-document.c \ + xps-document.h + +libxpsdocument_la_LDFLAGS = $(BACKEND_LIBTOOL_FLAGS) +libxpsdocument_la_LIBADD = \ + $(top_builddir)/libdocument/libatrildocument.la \ + $(BACKEND_LIBS) \ + $(GXPS_LIBS) + +backend_in_files = xpsdocument.atril-backend.in +backend_DATA = $(backend_in_files:.atril-backend.in=.atril-backend) + +EXTRA_DIST = $(backend_in_files) + +CLEANFILES = $(backend_DATA) + +@EV_INTLTOOL_ATRIL_BACKEND_RULE@ + +-include $(top_srcdir)/git.mk |