From 415b008bff9de46176ed39daa2ffece45cdd2506 Mon Sep 17 00:00:00 2001 From: rootavish Date: Fri, 30 May 2014 21:57:13 +0530 Subject: 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. --- backend/epub/minizip/Makefile.am | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 backend/epub/minizip/Makefile.am (limited to 'backend/epub/minizip/Makefile.am') 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 -- cgit v1.2.1