diff options
Diffstat (limited to 'Build/source/libs/poppler/poppler-0.12.4/Makefile.am')
-rw-r--r-- | Build/source/libs/poppler/poppler-0.12.4/Makefile.am | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/Build/source/libs/poppler/poppler-0.12.4/Makefile.am b/Build/source/libs/poppler/poppler-0.12.4/Makefile.am new file mode 100644 index 00000000000..2a752622b9e --- /dev/null +++ b/Build/source/libs/poppler/poppler-0.12.4/Makefile.am @@ -0,0 +1,92 @@ +ACLOCAL_AMFLAGS = -I m4 +DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc + +if BUILD_SPLASH_OUTPUT +splash_subdir = splash +splash_pc_file = poppler-splash.pc +endif + +if BUILD_CAIRO_OUTPUT +cairo_pc_file = poppler-cairo.pc +endif + +if BUILD_POPPLER_GLIB +glib_subdir = glib +glib_pc_file = poppler-glib.pc +endif + +if BUILD_POPPLER_QT +qt_subdir = qt +qt_pc_file = poppler-qt.pc +endif + +if BUILD_POPPLER_QT4 +qt4_subdir = qt4 +qt4_pc_file = poppler-qt4.pc +endif + +if BUILD_UTILS +utils_subdir = utils +endif + +SUBDIRS = goo fofi $(splash_subdir) poppler $(utils_subdir) $(glib_subdir) $(qt_subdir) test $(qt4_subdir) + +EXTRA_DIST = \ + README-XPDF \ + poppler.pc.in \ + poppler-cairo.pc.in \ + poppler-splash.pc.in \ + poppler-qt.pc.in + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = \ + poppler.pc \ + $(cairo_pc_file) \ + $(splash_pc_file) \ + $(glib_pc_file) \ + $(qt_pc_file) \ + $(qt4_pc_file) + +# Add CMake buildsystem files here so they get added on make dist +EXTRA_DIST += \ + glib/demo/CMakeLists.txt \ + glib/CMakeLists.txt \ + glib/poppler-features.h.cmake \ + qt/CMakeLists.txt \ + qt4/src/CMakeLists.txt \ + qt4/tests/CMakeLists.txt \ + qt4/CMakeLists.txt \ + qt4/demos/CMakeLists.txt \ + test/CMakeLists.txt \ + utils/CMakeLists.txt \ + CMakeLists.txt \ + ConfigureChecks.cmake \ + cmake/modules/COPYING-CMAKE-SCRIPTS \ + cmake/modules/FindCairo.cmake \ + cmake/modules/FindFontconfig.cmake \ + cmake/modules/FindGTK.cmake \ + cmake/modules/FindLCMS.cmake \ + cmake/modules/FindQt3.cmake \ + cmake/modules/FindQt4.cmake \ + cmake/modules/MacroBoolTo01.cmake \ + cmake/modules/MacroEnsureVersion.cmake \ + cmake/modules/MacroOptionalFindPackage.cmake \ + cmake/modules/MacroPushRequiredVars.cmake \ + cmake/modules/PopplerDefaults.cmake \ + cmake/modules/PopplerMacros.cmake \ + cmake/modules/FindLIBOPENJPEG.cmake \ + config.h.cmake \ + poppler-cairo.pc.cmake \ + poppler-config.h.cmake \ + poppler-glib.pc.cmake \ + poppler-qt.pc.cmake \ + poppler-qt4.pc.cmake \ + poppler-splash.pc.cmake \ + poppler.pc.cmake + + + +dist-hook: ChangeLog + +ChangeLog : .git/HEAD + $(AM_V_GEN) git log --stat > ChangeLog |