~ubuntu-branches/ubuntu/hoary/libextractor/hoary

« back to all changes in this revision

Viewing changes to src/plugins/pdf/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2004-10-30 23:50:00 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20041030235000-poix4e5mzhmzkpbk
Tags: 0.3.10-2
* Added fix from cvs for various Sparc64 problems (Closes #278905).
* Added workaround from cvs for re-load glib problem of OLE2 extractor.
* debian/watch added.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
INCLUDES = -I$(top_srcdir)/src/include
2
2
 
 
3
# install plugins under:
 
4
plugindir = $(libdir)/libextractor
 
5
 
3
6
SUBDIRS = .
4
7
 
5
 
lib_LTLIBRARIES = \
 
8
plugin_LTLIBRARIES = \
6
9
 libextractor_pdf.la
7
10
 
8
 
if DARWIN_LIBTOOL_BROKEN
9
 
install-libLTLIBRARIES:
10
 
        $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) .libs/libextractor_pdf.lai $(DESTDIR)$(libdir)/libextractor_pdf.la
11
 
        $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) .libs/libextractor_pdf.so $(DESTDIR)$(libdir)/libextractor_pdf.so
12
 
libextractor_pdf_la_LINK = \
13
 
  /usr/bin/ruby darwin.lt.rb $(CXX)
14
 
AM_LDFLAGS=
15
 
libextractor_pdf_la_LDFLAGS =
16
 
else
17
 
 
18
11
libextractor_pdf_la_LINK = \
19
12
  /bin/sh ../../../libtool --mode=link $(CXXLD) -o libextractor_pdf.la
20
13
AM_LDFLAGS = \
21
14
  $(XTRA_CPPLIBS) -export-dynamic -avoid-version -module -no-undefined
22
15
libextractor_pdf_la_LDFLAGS = \
23
16
  -export-dynamic -avoid-version -module -no-undefined $(XTRA_CPPLIBS)
24
 
endif
25
17
 
26
18
libextractor_pdf_la_LIBADD = \
27
19
  $(top_builddir)/src/main/libextractor.la \
28
20
  -lm 
29
21
 
30
 
#bin_PROGRAMS = \
31
 
# pdfinfo
32
 
 
33
22
libextractor_pdf_la_SOURCES = \
34
23
 Array.cc\
35
24
 Catalog.cc\
38
27
 Error.cc\
39
28
 FontEncoding.cc\
40
29
 FontFile.cc\
41
 
 FormWidget.cc\
42
30
 Function.cc\
43
31
 GString.cc\
44
 
 Gfx.cc\
45
 
 GfxFont.cc\
46
 
 GfxState.cc\
47
32
 Lexer.cc\
48
33
 Link.cc\
49
34
 Object.cc\
50
 
 OutputDev.cc\
51
35
 PDFDoc.cc\
52
36
 Page.cc\
53
37
 Params.cc\
60
44
 parseargs.cc\
61
45
 pdfextractor.cc
62
46
 
63
 
#pdfinfo_SOURCES = \
64
 
# Array.cc\
65
 
# Catalog.cc\
66
 
# Decrypt.cc\
67
 
# Dict.cc\
68
 
# Error.cc\
69
 
# FontEncoding.cc\
70
 
# FontFile.cc\
71
 
# FormWidget.cc\
72
 
# Function.cc\
73
 
# GString.cc\
74
 
# Gfx.cc\
75
 
# GfxFont.cc\
76
 
# GfxState.cc\
77
 
# Lexer.cc\
78
 
# Link.cc\
79
 
# Object.cc\
80
 
# OutputDev.cc\
81
 
# PDFDoc.cc\
82
 
# Page.cc\
83
 
# Params.cc\
84
 
# Parser.cc\
85
 
# Stream.cc\
86
 
# XRef.cc\
87
 
# gfile.cc\
88
 
# gmem.cc\
89
 
# gmempp.cc\
90
 
# parseargs.c\
91
 
# pdfinfo.cc
 
47
# gcc 3.3 produces BROKEN code for -O1 and -O2 (PDF extraction
 
48
# would fail silently) hence we MUST override the user flag here
 
49
# which may contain -O1 or -O2!
 
50
CXXFLAGS = -O0
92
51
 
93
52
EXTRA_DIST = \
94
53
 darwin.lt.rb \
95
 
 pdfinfo.cc \
 
54
 aconf.h \
 
55
 aconf2.h \
 
56
 ErrorCodes.h \
96
57
 Array.h\
97
58
 Catalog.h\
98
59
 CompactFontInfo.h\
102
63
 FontEncoding.h\
103
64
 FontFile.h\
104
65
 FontInfo.h\
105
 
 FormWidget.h\
106
66
 Function.h\
107
67
 GString.h\
108
 
 Gfx.h\
109
 
 GfxFont.h\
110
 
 GfxState.h\
111
68
 Lexer.h\
112
69
 Link.h\
113
70
 Object.h\
114
 
 OutputDev.h\
115
71
 PDFDoc.h\
116
72
 Page.h\
117
73
 Params.h\
120
76
 Stream-CCITT.h\
121
77
 Stream.h\
122
78
 XRef.h\
123
 
 config.h\
124
79
 gfile.h\
125
80
 gmem.h\
126
81
 gtypes.h\