~ubuntu-branches/ubuntu/precise/enigmail/precise-security

« back to all changes in this revision

Viewing changes to editor/libeditor/base/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chris Coulson
  • Date: 2012-11-12 16:36:01 UTC
  • mfrom: (0.12.15)
  • Revision ID: package-import@ubuntu.com-20121112163601-t8e8skdfi3ni9iqp
Tags: 2:1.4.6-0ubuntu0.12.04.1
* New upstream release v1.4.6
  - see LP: #1080212 for USN information
* Drop unneeded patches
  - remove debian/patches/correct-version-number.diff
  - remove debian/patches/dont_register_cids_multiple_times.diff
  - update debian/patches/series
* Support building in an objdir
  - update debian/rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# This Source Code Form is subject to the terms of the Mozilla Public
 
3
# License, v. 2.0. If a copy of the MPL was not distributed with this
 
4
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
5
 
 
6
DEPTH           = @DEPTH@
 
7
topsrcdir       = @top_srcdir@
 
8
srcdir          = @srcdir@
 
9
VPATH           = @srcdir@
 
10
FAIL_ON_WARNINGS = 1
 
11
 
 
12
include $(DEPTH)/config/autoconf.mk
 
13
 
 
14
TEST_DIRS += tests
 
15
 
 
16
MODULE          = editor
 
17
LIBRARY_NAME    = editorbase_s
 
18
LIBXUL_LIBRARY  = 1
 
19
 
 
20
 
 
21
# Internal header files, needed by other editor sublibs:
 
22
INTERNAL_HDR_DIR = ../internal
 
23
 
 
24
CPPSRCS         =                           \
 
25
                nsEditor.cpp                \
 
26
                nsEditorCommands.cpp        \
 
27
                nsEditorController.cpp      \
 
28
                nsEditorEventListener.cpp   \
 
29
                nsEditorUtils.cpp           \
 
30
                nsSelectionState.cpp        \
 
31
                $(NULL)
 
32
 
 
33
# Transactions: we'd like to split these off,
 
34
# but currently they and nsEditor are too intertwined!
 
35
CPPSRCS         +=                          \
 
36
                EditTxn.cpp                 \
 
37
                PlaceholderTxn.cpp          \
 
38
                ChangeAttributeTxn.cpp      \
 
39
                ChangeCSSInlineStyleTxn.cpp \
 
40
                CreateElementTxn.cpp        \
 
41
                DeleteNodeTxn.cpp           \
 
42
                DeleteRangeTxn.cpp          \
 
43
                DeleteTextTxn.cpp           \
 
44
                EditAggregateTxn.cpp        \
 
45
                IMETextTxn.cpp              \
 
46
                InsertElementTxn.cpp        \
 
47
                InsertTextTxn.cpp           \
 
48
                JoinElementTxn.cpp          \
 
49
                SetDocTitleTxn.cpp          \
 
50
                SplitElementTxn.cpp         \
 
51
                nsStyleSheetTxns.cpp        \
 
52
                $(NULL)
 
53
 
 
54
# don't want the shared lib; force the creation of a static lib.
 
55
FORCE_STATIC_LIB = 1
 
56
 
 
57
include $(topsrcdir)/config/rules.mk
 
58
 
 
59
INCLUDES        += \
 
60
                -I$(topsrcdir)/editor/libeditor/text \
 
61
                -I$(topsrcdir)/editor/txmgr/src \
 
62
                -I$(topsrcdir)/content/base/src \
 
63
                -I$(topsrcdir)/content/events/src \
 
64
                -I$(topsrcdir)/layout/style \
 
65
                -I$(topsrcdir)/extensions/spellcheck/src \
 
66
                $(NULL)