~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/extensions/transformiix/source/xslt/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
2
# The contents of this file are subject to the Mozilla Public
 
3
# License Version 1.1 (the "License"); you may not use this file
 
4
# except in compliance with the License. You may obtain a copy of
 
5
# the License at http://www.mozilla.org/MPL/
 
6
 
7
# Software distributed under the License is distributed on an "AS
 
8
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
 
9
# implied. See the License for the specific language governing
 
10
# rights and limitations under the License.
 
11
 
12
# The Original Code is Transformiix XSLT Processor.
 
13
 
14
# The Initial Developer of the Original Code is Axel Hecht.
 
15
# Portions created by Axel Hecht are  Copyright (C) Axel Hecht.
 
16
# All Rights Reserved.
 
17
 
18
# Contributor(s):
 
19
#       Axel Hecht <axel@pike.org>
 
20
 
21
 
 
22
DEPTH           = ../../../..
 
23
topsrcdir       = @top_srcdir@
 
24
srcdir          = @srcdir@
 
25
VPATH           = @srcdir@
 
26
 
 
27
include $(DEPTH)/config/autoconf.mk
 
28
 
 
29
DIRS            = functions util
 
30
 
 
31
MODULE = transformiix
 
32
LIBRARY_NAME = txxslt_s
 
33
REQUIRES        = string \
 
34
                  xpcom \
 
35
                  $(NULL)
 
36
 
 
37
ifndef TX_EXE
 
38
REQUIRES +=       dom \
 
39
                  content \
 
40
                  widget \
 
41
                  necko \
 
42
                  unicharutil \
 
43
                  xpconnect \
 
44
                  js \
 
45
                  htmlparser \
 
46
                  webshell \
 
47
                  docshell \
 
48
                  layout \
 
49
                  uconv \
 
50
                  caps \
 
51
                  windowwatcher \
 
52
                  mimetype \
 
53
                  intl \
 
54
                  htmlparser \
 
55
                  $(NULL)
 
56
else
 
57
REQUIRES +=       expat \
 
58
                  $(NULL)
 
59
endif
 
60
 
 
61
CPPSRCS = \
 
62
        txBufferingHandler.cpp \
 
63
        txExecutionState.cpp \
 
64
        txInstructions.cpp \
 
65
        txOutputFormat.cpp \
 
66
        txRtfHandler.cpp \
 
67
        txStylesheet.cpp \
 
68
        txStylesheetCompileHandlers.cpp \
 
69
        txStylesheetCompiler.cpp \
 
70
        txTextHandler.cpp \
 
71
        txToplevelItems.cpp \
 
72
        txXSLTNumber.cpp \
 
73
        txXSLTNumberCounters.cpp \
 
74
        txXSLTPatterns.cpp \
 
75
        txXSLTProcessor.cpp \
 
76
        txPatternParser.cpp \
 
77
        txUnknownHandler.cpp
 
78
 
 
79
ifdef TX_EXE
 
80
CPPSRCS += txHTMLOutput.cpp     \
 
81
           txStandaloneXSLTProcessor.cpp \
 
82
           txStandaloneStylesheetCompiler.cpp \
 
83
           txTextOutput.cpp \
 
84
           txXMLOutput.cpp
 
85
else
 
86
CPPSRCS += txMozillaStylesheetCompiler.cpp \
 
87
           txMozillaTextOutput.cpp \
 
88
           txMozillaXMLOutput.cpp \
 
89
           txMozillaXSLTProcessor.cpp
 
90
endif
 
91
 
 
92
# we don't want the shared lib, but we want to force the creation of a
 
93
# static lib.
 
94
FORCE_STATIC_LIB = 1
 
95
 
 
96
include $(topsrcdir)/config/rules.mk
 
97
 
 
98
INCLUDES += -I$(srcdir) -I$(srcdir)/../base \
 
99
  -I$(srcdir)/../xml -I$(srcdir)/../xml/dom \
 
100
  -I$(srcdir)/../xml/parser \
 
101
  -I$(srcdir)/../xpath -I$(srcdir)/util -I$(srcdir)/functions
 
102
ifdef TX_EXE
 
103
DEFINES  += -DXML_DTD -DXML_UNICODE
 
104
endif