blob: be6070e4863dd15b2811be59000012595c1bea01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
## $Id$
## Proxy Makefile.am to build xpdf for TeX Live.
##
## Copyright 2016-2017 Karl Berry <tex-live@tug.org>
## Copyright 2009-2015 Peter Breitenlohner <tex-live@tug.org>
##
## This file is free software; the copyright holder
## gives unlimited permission to copy and/or distribute it,
## with or without modifications, as long as this notice is preserved.
##
#========================================================================
##
## Main xpdf Makefile.
## Goo library Makefile
## FoFi library Makefile
## Xpdf Makefile
##
## Copyright 1996-2003 Glyph & Cog, LLC
##
#========================================================================
##
ACLOCAL_AMFLAGS = -I ../../m4
## We want to re-distribute the whole original xpdf source tree.
##
EXTRA_DIST = $(XPDF_TREE)
## Official patches as obtained from ftp://ftp.foolabs.com/pub/xpdf
## (if any)
##
EXTRA_DIST += xpdf-foolabs
## Actual patches applied to the original source tree
EXTRA_DIST += TLpatches
# Files not to be distributed
include $(srcdir)/../../am/dist_hook.am
NEVER_NAMES += $(NEVER_NAMES_SUB)
SUBDIRS = . goo fofi splash xpdf
GOO_SRC = $(top_srcdir)/$(XPDF_TREE)/goo
FOFI_SRC = $(top_srcdir)/$(XPDF_TREE)/fofi
SPLASH_SRC = $(top_srcdir)/$(XPDF_TREE)/splash
XPDF_SRC = $(top_srcdir)/$(XPDF_TREE)/xpdf
AM_CPPFLAGS = -Igoo -Ifofi -Isplash -Ixpdf
AM_CPPFLAGS += -I$(GOO_SRC) -I$(FOFI_SRC) -I$(SPLASH_SRC) -I$(XPDF_SRC)
AM_CPPFLAGS += -DPDF_PARSER_ONLY
AM_CFLAGS = $(WARNING_CFLAGS)
AM_CXXFLAGS = $(NO_WARN_CXXFLAGS)
noinst_LIBRARIES = libxpdf.a
nodist_libxpdf_a_SOURCES = \
$(goo_libGoo_a_sources) \
$(fofi_libfofi_a_sources) \
$(xpdf_libxpdf_a_sources)
goo_libGoo_a_sources = \
@XPDF_TREE@/goo/FixedPoint.cc \
@XPDF_TREE@/goo/GHash.cc \
@XPDF_TREE@/goo/GList.cc \
@XPDF_TREE@/goo/GString.cc \
@XPDF_TREE@/goo/gfile.cc \
@XPDF_TREE@/goo/gmem.cc \
@XPDF_TREE@/goo/gmempp.cc
fofi_libfofi_a_sources = \
@XPDF_TREE@/fofi/FoFiBase.cc \
@XPDF_TREE@/fofi/FoFiEncodings.cc \
@XPDF_TREE@/fofi/FoFiIdentifier.cc \
@XPDF_TREE@/fofi/FoFiTrueType.cc \
@XPDF_TREE@/fofi/FoFiType1.cc \
@XPDF_TREE@/fofi/FoFiType1C.cc
xpdf_libxpdf_a_sources = \
@XPDF_TREE@/xpdf/AcroForm.cc \
@XPDF_TREE@/xpdf/Annot.cc \
@XPDF_TREE@/xpdf/Array.cc \
@XPDF_TREE@/xpdf/BuiltinFont.cc \
@XPDF_TREE@/xpdf/BuiltinFontTables.cc \
@XPDF_TREE@/xpdf/CMap.cc \
@XPDF_TREE@/xpdf/Catalog.cc \
@XPDF_TREE@/xpdf/CharCodeToUnicode.cc \
@XPDF_TREE@/xpdf/Decrypt.cc \
@XPDF_TREE@/xpdf/Dict.cc \
@XPDF_TREE@/xpdf/Error.cc \
@XPDF_TREE@/xpdf/FontEncodingTables.cc \
@XPDF_TREE@/xpdf/Form.cc \
@XPDF_TREE@/xpdf/Function.cc \
@XPDF_TREE@/xpdf/Gfx.cc \
@XPDF_TREE@/xpdf/GfxFont.cc \
@XPDF_TREE@/xpdf/GfxState.cc \
@XPDF_TREE@/xpdf/GlobalParams.cc \
@XPDF_TREE@/xpdf/JArithmeticDecoder.cc \
@XPDF_TREE@/xpdf/JBIG2Stream.cc \
@XPDF_TREE@/xpdf/JPXStream.cc \
@XPDF_TREE@/xpdf/Lexer.cc \
@XPDF_TREE@/xpdf/Link.cc \
@XPDF_TREE@/xpdf/NameToCharCode.cc \
@XPDF_TREE@/xpdf/Object.cc \
@XPDF_TREE@/xpdf/OptionalContent.cc \
@XPDF_TREE@/xpdf/Outline.cc \
@XPDF_TREE@/xpdf/OutputDev.cc \
@XPDF_TREE@/xpdf/PDF417Barcode.cc \
@XPDF_TREE@/xpdf/PDFDoc.cc \
@XPDF_TREE@/xpdf/PDFDocEncoding.cc \
@XPDF_TREE@/xpdf/PSTokenizer.cc \
@XPDF_TREE@/xpdf/Page.cc \
@XPDF_TREE@/xpdf/Parser.cc \
@XPDF_TREE@/xpdf/SecurityHandler.cc \
@XPDF_TREE@/xpdf/Stream.cc \
@XPDF_TREE@/xpdf/TextString.cc \
@XPDF_TREE@/xpdf/UnicodeMap.cc \
@XPDF_TREE@/xpdf/UnicodeRemapping.cc \
@XPDF_TREE@/xpdf/UTF8.cc \
@XPDF_TREE@/xpdf/XFAForm.cc \
@XPDF_TREE@/xpdf/XRef.cc \
@XPDF_TREE@/xpdf/Zoox.cc
# Rebuild
rebuild_prereq =
rebuild_target = all
CLEANFILES =
include $(srcdir)/../../am/rebuild.am
|