summaryrefslogtreecommitdiff
path: root/backend/epub/minizip
diff options
context:
space:
mode:
authorrootavish <[email protected]>2014-05-30 21:57:13 +0530
committerrootavish <[email protected]>2014-05-30 22:23:05 +0530
commit415b008bff9de46176ed39daa2ffece45cdd2506 (patch)
tree53d6b70cd67eda8cf79b84809db90fef5ddc80aa /backend/epub/minizip
parent7f33c3425aae32d1dd5d2d7b912f8d4eac1cf85d (diff)
downloadatril-415b008bff9de46176ed39daa2ffece45cdd2506.tar.bz2
atril-415b008bff9de46176ed39daa2ffece45cdd2506.tar.xz
Created a Makefile for minizip, modified epub Makefile
I created a Makefile for the minizip backend, since i am only using part of that library and modified the epub backend to work with the library. Also modified the configure script to suit our purpose. The epub backend can now be compiled using the make command in the epub directory, although it cannot still be compiled as a part of atril.
Diffstat (limited to 'backend/epub/minizip')
-rw-r--r--backend/epub/minizip/Makefile.am14
1 files changed, 14 insertions, 0 deletions
diff --git a/backend/epub/minizip/Makefile.am b/backend/epub/minizip/Makefile.am
new file mode 100644
index 00000000..315fada0
--- /dev/null
+++ b/backend/epub/minizip/Makefile.am
@@ -0,0 +1,14 @@
+AM_CPPFLAGS = \
+ $(WARN_CFLAGS) \
+ $(ZLIB_CFLAGS)
+
+noinst_LTLIBRARIES = libminizip.la
+
+libminizip_la_SOURCES = \
+ unzip.c \
+ ioapi.c
+
+libminizip_la_LIBADD = \
+ $(ZLIB_LIBS)
+
+-include $(top_srcdir)/git.mk