mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 14:30:57 +00:00
435a566751
* sumatrapdf - vendor import * everything compiles (libjpeg, poppler, fitz, sumatrapdf) * does NOT link (remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it) svn path=/trunk/; revision=29295
80 lines
1.4 KiB
Makefile
80 lines
1.4 KiB
Makefile
if BUILD_SPLASH_OUTPUT
|
|
|
|
pdftoppm_SOURCES = \
|
|
pdftoppm.cc \
|
|
$(common)
|
|
|
|
pdftoppm_binary = pdftoppm
|
|
|
|
pdftoppm_manpage = pdftoppm.1
|
|
|
|
endif
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/utils \
|
|
-I$(top_srcdir)/poppler \
|
|
$(UTILS_CFLAGS) \
|
|
$(FONTCONFIG_CFLAGS)
|
|
|
|
LDADD = \
|
|
$(top_builddir)/poppler/libpoppler.la \
|
|
$(UTILS_LIBS) \
|
|
$(FONTCONFIG_LIBS)
|
|
|
|
bin_PROGRAMS = \
|
|
pdffonts \
|
|
pdfimages \
|
|
pdfinfo \
|
|
pdftops \
|
|
pdftotext \
|
|
pdftohtml \
|
|
$(pdftoppm_binary)
|
|
|
|
dist_man1_MANS = \
|
|
pdffonts.1 \
|
|
pdfimages.1 \
|
|
pdfinfo.1 \
|
|
pdftops.1 \
|
|
pdftotext.1 \
|
|
pdftohtml.1 \
|
|
$(pdftoppm_manpage)
|
|
|
|
common = parseargs.c parseargs.h
|
|
|
|
pdffonts_SOURCES = \
|
|
pdffonts.cc \
|
|
$(common)
|
|
|
|
pdfimages_SOURCES = \
|
|
pdfimages.cc \
|
|
ImageOutputDev.cc \
|
|
ImageOutputDev.h \
|
|
$(common)
|
|
|
|
pdfinfo_SOURCES = \
|
|
pdfinfo.cc \
|
|
$(common)
|
|
|
|
pdftops_SOURCES = \
|
|
pdftops.cc \
|
|
$(common)
|
|
|
|
pdftotext_SOURCES = \
|
|
pdftotext.cc \
|
|
$(common)
|
|
|
|
pdftohtml_SOURCES = \
|
|
pdftohtml.cc \
|
|
HtmlFonts.cc \
|
|
HtmlFonts.h \
|
|
HtmlLinks.cc \
|
|
HtmlLinks.h \
|
|
HtmlOutputDev.cc \
|
|
HtmlOutputDev.h \
|
|
$(common)
|
|
|
|
# Yay, automake! It should be able to figure out that it has to dist
|
|
# pdftoppm.1, but nooo. So we just add it here.
|
|
|
|
EXTRA_DIST = pdf2xml.dtd pdftoppm.1
|