reactos/rosapps/smartpdf/poppler/splash/Makefile.am
Klemens Friedl 435a566751 SmartPDF - lightweight pdf viewer app for rosapps
* sumatrapdf - vendor import
* everything compiles (libjpeg, poppler, fitz, sumatrapdf)
* does NOT link

(remove the comment tags in the parent directory.rbuild file (rosapps dir) to build it)

svn path=/trunk/; revision=29295
2007-09-29 08:39:35 +00:00

58 lines
1.2 KiB
Makefile

INCLUDES = \
-I$(top_srcdir) \
-I$(top_srcdir)/goo \
$(FREETYPE_CFLAGS)
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