blob: f16b9b7921836c386b5ceb7e7a3ff2d080144d40 (
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
|
if BUILD_GTK_TEST
if BUILD_SPLASH_OUTPUT
gtk_splash_test = \
gtk-splash-test
splash_includes = \
-I$(top_srcdir)/splash
endif
if BUILD_CAIRO_OUTPUT
gtk_cairo_test = \
gtk-cairo-test
pdf_inspector = \
pdf_inspector
cairo_includes = \
$(CAIRO_CFLAGS) \
$(FREETYPE_CFLAGS)
endif
endif
INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/poppler \
-I$(top_srcdir)/glib \
-I$(top_builddir)/glib \
$(cairo_includes) \
$(GTK_TEST_CFLAGS)
noinst_PROGRAMS = $(gtk_splash_test) $(gtk_cairo_test) $(pdf_inspector)
gtk_splash_test_SOURCES = \
gtk-splash-test.cc
gtk_splash_test_LDADD = \
$(top_builddir)/poppler/libpoppler.la \
$(GTK_TEST_LIBS)
gtk_cairo_test_SOURCES = \
gtk-cairo-test.cc
gtk_cairo_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.la \
$(top_builddir)/poppler/libpoppler-cairo.la \
$(CAIRO_LIBS) \
$(FREETYPE_LIBS) \
$(GTK_TEST_LIBS)
EXTRA_DIST = \
pdf-operators.c
|