summaryrefslogtreecommitdiff
path: root/Build/source/libs/xpdf/xpdf-src/splash/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-src/splash/Makefile.in')
-rw-r--r--Build/source/libs/xpdf/xpdf-src/splash/Makefile.in93
1 files changed, 0 insertions, 93 deletions
diff --git a/Build/source/libs/xpdf/xpdf-src/splash/Makefile.in b/Build/source/libs/xpdf/xpdf-src/splash/Makefile.in
deleted file mode 100644
index 6479b1543ee..00000000000
--- a/Build/source/libs/xpdf/xpdf-src/splash/Makefile.in
+++ /dev/null
@@ -1,93 +0,0 @@
-#========================================================================
-#
-# Splash library Makefile
-#
-# Copyright 2003 Glyph & Cog, LLC
-#
-#========================================================================
-
-SHELL = /bin/sh
-
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-GOOSRCDIR = $(srcdir)/../goo
-GOOLIBDIR = ../goo
-FOFISRCDIR = $(srcdir)/../fofi
-FOFILIBDIR = ../fofi
-
-CXXFLAGS = @CXXFLAGS@ @DEFS@ -I.. -I$(srcdir)/.. -I$(GOOSRCDIR) -I$(FOFISRCDIR) -I$(srcdir) @freetype2_CFLAGS@
-
-CXX = @CXX@
-AR = @AR@
-RANLIB = @RANLIB@
-
-LIBPREFIX = @LIBPREFIX@
-
-#------------------------------------------------------------------------
-
-.SUFFIXES: .cc
-
-.cc.o:
- $(CXX) $(CXXFLAGS) -c $<
-
-#------------------------------------------------------------------------
-
-CXX_SRC = \
- $(srcdir)/Splash.cc \
- $(srcdir)/SplashBitmap.cc \
- $(srcdir)/SplashClip.cc \
- $(srcdir)/SplashFTFont.cc \
- $(srcdir)/SplashFTFontEngine.cc \
- $(srcdir)/SplashFTFontFile.cc \
- $(srcdir)/SplashFont.cc \
- $(srcdir)/SplashFontEngine.cc \
- $(srcdir)/SplashFontFile.cc \
- $(srcdir)/SplashFontFileID.cc \
- $(srcdir)/SplashPath.cc \
- $(srcdir)/SplashPattern.cc \
- $(srcdir)/SplashScreen.cc \
- $(srcdir)/SplashState.cc \
- $(srcdir)/SplashXPath.cc \
- $(srcdir)/SplashXPathScanner.cc
-
-#------------------------------------------------------------------------
-
-all: $(LIBPREFIX)splash.a
-
-#------------------------------------------------------------------------
-
-SPLASH_OBJS = \
- Splash.o \
- SplashBitmap.o \
- SplashClip.o \
- SplashFTFont.o \
- SplashFTFontEngine.o \
- SplashFTFontFile.o \
- SplashFont.o \
- SplashFontEngine.o \
- SplashFontFile.o \
- SplashFontFileID.o \
- SplashPath.o \
- SplashPattern.o \
- SplashScreen.o \
- SplashState.o \
- SplashXPath.o \
- SplashXPathScanner.o
-
-$(LIBPREFIX)splash.a: $(SPLASH_OBJS)
- rm -f $(LIBPREFIX)splash.a
- $(AR) $(LIBPREFIX)splash.a $(SPLASH_OBJS)
- $(RANLIB) $(LIBPREFIX)splash.a
-
-#------------------------------------------------------------------------
-
-clean:
- rm -f $(SPLASH_OBJS) $(LIBPREFIX)splash.a
-
-#------------------------------------------------------------------------
-
-depend:
- $(CXX) $(CXXFLAGS) -MM $(CXX_SRC) >Makefile.dep
-
--include Makefile.dep