beta-0.89.2
[luatex.git] / source / libs / poppler / poppler-src / splash / Makefile.am
blob5c265d6360c438f33de758299c09f22bb311658f
1 noinst_LTLIBRARIES = libsplash.la
3 if ENABLE_XPDF_HEADERS
5 poppler_splash_includedir = $(includedir)/poppler/splash
6 poppler_splash_include_HEADERS =                \
7         Splash.h                                \
8         SplashBitmap.h                          \
9         SplashClip.h                            \
10         SplashErrorCodes.h                      \
11         SplashFTFont.h                          \
12         SplashFTFontEngine.h                    \
13         SplashFTFontFile.h                      \
14         SplashFont.h                            \
15         SplashFontEngine.h                      \
16         SplashFontFile.h                        \
17         SplashFontFileID.h                      \
18         SplashGlyphBitmap.h                     \
19         SplashMath.h                            \
20         SplashPath.h                            \
21         SplashPattern.h                         \
22         SplashScreen.h                          \
23         SplashState.h                           \
24         SplashT1Font.h                          \
25         SplashT1FontEngine.h                    \
26         SplashT1FontFile.h                      \
27         SplashTypes.h                           \
28         SplashXPath.h                           \
29         SplashXPathScanner.h
31 endif
33 libsplash_la_SOURCES =                          \
34         Splash.cc                               \
35         SplashBitmap.cc                         \
36         SplashClip.cc                           \
37         SplashFTFont.cc                         \
38         SplashFTFontEngine.cc                   \
39         SplashFTFontFile.cc                     \
40         SplashFont.cc                           \
41         SplashFontEngine.cc                     \
42         SplashFontFile.cc                       \
43         SplashFontFileID.cc                     \
44         SplashPath.cc                           \
45         SplashPattern.cc                        \
46         SplashScreen.cc                         \
47         SplashState.cc                          \
48         SplashT1Font.cc                         \
49         SplashT1FontEngine.cc                   \
50         SplashT1FontFile.cc                     \
51         SplashXPath.cc                          \
52         SplashXPathScanner.cc
54 # SplashBitmap includes JpegWriter.h, TiffWriter.h, PNGWriter.h
55 if BUILD_LIBJPEG
56 libjpeg_includes = $(LIBJPEG_CFLAGS)
57 endif
59 if BUILD_LIBTIFF
60 libtiff_includes = $(LIBTIFF_CFLAGS)
61 endif
63 if BUILD_LIBPNG
64 libpng_includes = $(LIBPNG_CFLAGS)
65 endif
67 libsplash_la_CPPFLAGS =                         \
68         -I$(top_srcdir)                         \
69         -I$(top_srcdir)/goo                     \
70         $(libjpeg_includes)                     \
71         $(libtiff_includes)                     \
72         $(libpng_includes)                      \
73         $(FREETYPE_CFLAGS)