mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
81 lines
1.4 KiB
Text
81 lines
1.4 KiB
Text
![]() |
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
|