blob: b3289c726ce95f2e86bd08e9e3c19ce992eee41d (
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
|
if BUILD_GTK_TEST
if BUILD_SPLASH_OUTPUT
splash_includes = \
-I$(top_srcdir)/splash
endif
if BUILD_CAIRO_OUTPUT
pdf_inspector = \
pdf_inspector
cairo_includes = \
$(CAIRO_CFLAGS) \
$(FREETYPE_CFLAGS)
endif
gtk_test = \
gtk-test
endif
if BUILD_SPLASH_OUTPUT
perf_test = \
perf-test
endif
pdf_fullrewrite = \
pdf-fullrewrite
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/poppler \
-I$(top_srcdir)/glib \
-I$(top_builddir)/glib \
$(cairo_includes) \
$(GTK_TEST_CFLAGS)
noinst_PROGRAMS = $(pdf_inspector) $(perf_test) $(pdf_fullrewrite) $(gtk_test)
AM_LDFLAGS = @auto_import_flags@
gtk_test_SOURCES = \
gtk-test.cc
gtk_test_LDADD = \
$(top_builddir)/poppler/libpoppler.la \
$(top_builddir)/glib/libpoppler-glib.la \
$(CAIRO_LIBS) \
$(GTK_TEST_LIBS)
pdf_inspector_SOURCES = \
pdf-inspector.cc
pdf_inspector_LDADD = \
$(top_builddir)/poppler/libpoppler-cairo.la \
$(top_builddir)/poppler/libpoppler.la \
$(CAIRO_LIBS) \
$(FREETYPE_LIBS) \
$(GTK_TEST_LIBS) \
$(X_EXTRA_LIBS)
perf_test_SOURCES = \
perf-test.cc \
perf-test-preview-dummy.cc
perf_test_LDADD = \
$(top_builddir)/poppler/libpoppler.la \
$(FREETYPE_LIBS) \
$(X_EXTRA_LIBS)
pdf_fullrewrite_SOURCES = \
pdf-fullrewrite.cc \
../utils/parseargs.cc
pdf_fullrewrite_LDADD = \
$(top_builddir)/poppler/libpoppler.la
EXTRA_DIST = \
pdf-operators.c \
pdf-inspector.ui
|