]> www.fi.muni.cz Git - evince.git/blob - pdf/splash/Makefile.in
Imported Xpdf 3.00 and fixed build.
[evince.git] / pdf / splash / Makefile.in
1 #========================================================================
2 #
3 # Splash library Makefile
4 #
5 # Copyright 2003 Glyph & Cog, LLC
6 #
7 #========================================================================
8
9 SHELL = /bin/sh
10
11 srcdir = @srcdir@
12 VPATH = @srcdir@
13
14 GOOSRCDIR = $(srcdir)/../goo
15 GOOLIBDIR = ../goo
16 FOFISRCDIR = $(srcdir)/../fofi
17 FOFILIBDIR = ../fofi
18
19 CXXFLAGS = @CXXFLAGS@ @DEFS@ -I.. -I$(GOOSRCDIR) -I$(FOFISRCDIR) -I$(srcdir) @t1_CFLAGS@ @freetype2_CFLAGS@
20
21 CXX = @CXX@
22 AR = @AR@
23 RANLIB = @RANLIB@
24
25 LIBPREFIX = @LIBPREFIX@
26
27 #------------------------------------------------------------------------
28
29 .SUFFIXES: .cc
30
31 .cc.o:
32         $(CXX) $(CXXFLAGS) -c $<
33
34 #------------------------------------------------------------------------
35
36 CXX_SRC = \
37         $(srcdir)/Splash.cc \
38         $(srcdir)/SplashBitmap.cc \
39         $(srcdir)/SplashClip.cc \
40         $(srcdir)/SplashFTFont.cc \
41         $(srcdir)/SplashFTFontEngine.cc \
42         $(srcdir)/SplashFTFontFile.cc \
43         $(srcdir)/SplashFont.cc \
44         $(srcdir)/SplashFontEngine.cc \
45         $(srcdir)/SplashFontFile.cc \
46         $(srcdir)/SplashFontFileID.cc \
47         $(srcdir)/SplashPath.cc \
48         $(srcdir)/SplashPattern.cc \
49         $(srcdir)/SplashScreen.cc \
50         $(srcdir)/SplashState.cc \
51         $(srcdir)/SplashT1Font.cc \
52         $(srcdir)/SplashT1FontEngine.cc \
53         $(srcdir)/SplashT1FontFile.cc \
54         $(srcdir)/SplashXPath.cc \
55         $(srcdir)/SplashXPathScanner.cc
56
57 #------------------------------------------------------------------------
58
59 all: $(LIBPREFIX)splash.a
60
61 #------------------------------------------------------------------------
62
63 SPLASH_OBJS = \
64         Splash.o \
65         SplashBitmap.o \
66         SplashClip.o \
67         SplashFTFont.o \
68         SplashFTFontEngine.o \
69         SplashFTFontFile.o \
70         SplashFont.o \
71         SplashFontEngine.o \
72         SplashFontFile.o \
73         SplashFontFileID.o \
74         SplashPath.o \
75         SplashPattern.o \
76         SplashScreen.o \
77         SplashState.o \
78         SplashT1Font.o \
79         SplashT1FontEngine.o \
80         SplashT1FontFile.o \
81         SplashXPath.o \
82         SplashXPathScanner.o
83
84 $(LIBPREFIX)splash.a: $(SPLASH_OBJS)
85         rm -f $(LIBPREFIX)splash.a
86         $(AR) $(LIBPREFIX)splash.a $(SPLASH_OBJS)
87         $(RANLIB) $(LIBPREFIX)splash.a
88
89 #------------------------------------------------------------------------
90
91 clean:
92         rm -f $(SPLASH_OBJS) $(LIBPREFIX)splash.a
93
94 #------------------------------------------------------------------------
95
96 depend:
97         $(CXX) $(CXXFLAGS) -MM $(CXX_SRC) >Makefile.dep
98
99 include Makefile.dep