summaryrefslogtreecommitdiff
path: root/splash/Makefile.am
blob: 5c265d6360c438f33de758299c09f22bb311658f (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
noinst_LTLIBRARIES = libsplash.la

if ENABLE_XPDF_HEADERS

poppler_splash_includedir = $(includedir)/poppler/splash
poppler_splash_include_HEADERS =		\
	Splash.h				\
	SplashBitmap.h				\
	SplashClip.h				\
	SplashErrorCodes.h			\
	SplashFTFont.h				\
	SplashFTFontEngine.h			\
	SplashFTFontFile.h			\
	SplashFont.h				\
	SplashFontEngine.h			\
	SplashFontFile.h			\
	SplashFontFileID.h			\
	SplashGlyphBitmap.h			\
	SplashMath.h				\
	SplashPath.h				\
	SplashPattern.h				\
	SplashScreen.h				\
	SplashState.h				\
	SplashT1Font.h				\
	SplashT1FontEngine.h			\
	SplashT1FontFile.h			\
	SplashTypes.h				\
	SplashXPath.h				\
	SplashXPathScanner.h

endif

libsplash_la_SOURCES =				\
	Splash.cc				\
	SplashBitmap.cc				\
	SplashClip.cc				\
	SplashFTFont.cc				\
	SplashFTFontEngine.cc			\
	SplashFTFontFile.cc			\
	SplashFont.cc				\
	SplashFontEngine.cc			\
	SplashFontFile.cc			\
	SplashFontFileID.cc			\
	SplashPath.cc				\
	SplashPattern.cc			\
	SplashScreen.cc				\
	SplashState.cc				\
	SplashT1Font.cc				\
	SplashT1FontEngine.cc			\
	SplashT1FontFile.cc			\
	SplashXPath.cc				\
	SplashXPathScanner.cc

# SplashBitmap includes JpegWriter.h, TiffWriter.h, PNGWriter.h
if BUILD_LIBJPEG
libjpeg_includes = $(LIBJPEG_CFLAGS)
endif

if BUILD_LIBTIFF
libtiff_includes = $(LIBTIFF_CFLAGS)
endif

if BUILD_LIBPNG
libpng_includes = $(LIBPNG_CFLAGS)
endif

libsplash_la_CPPFLAGS =				\
	-I$(top_srcdir)				\
	-I$(top_srcdir)/goo			\
	$(libjpeg_includes)			\
	$(libtiff_includes)			\
	$(libpng_includes)			\
	$(FREETYPE_CFLAGS)