2001-04-05 23:51:30 +00:00
|
|
|
#
|
2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2001-04-05 23:51:30 +00:00
|
|
|
|
|
|
|
DEPTH = ../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2012-01-11 08:22:16 +00:00
|
|
|
FAIL_ON_WARNINGS = 1
|
2001-04-05 23:51:30 +00:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2012-02-04 17:32:24 +00:00
|
|
|
TEST_DIRS += tests
|
2009-02-14 19:32:22 +00:00
|
|
|
|
2001-09-25 00:45:54 +00:00
|
|
|
MODULE = editor
|
|
|
|
LIBRARY_NAME = texteditor_s
|
2004-12-15 04:07:01 +00:00
|
|
|
LIBXUL_LIBRARY = 1
|
2001-10-03 00:54:12 +00:00
|
|
|
|
2001-09-25 00:45:54 +00:00
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
nsPlaintextDataTransfer.cpp \
|
|
|
|
nsPlaintextEditor.cpp \
|
|
|
|
nsTextEditUtils.cpp \
|
|
|
|
nsTextEditRules.cpp \
|
|
|
|
nsInternetCiter.cpp \
|
|
|
|
nsTextEditRulesBidi.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# don't want the shared lib; force the creation of a static lib.
|
|
|
|
FORCE_STATIC_LIB = 1
|
2001-04-05 23:51:30 +00:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2008-03-13 18:54:01 +00:00
|
|
|
INCLUDES += \
|
|
|
|
-I$(topsrcdir)/editor/libeditor/base \
|
2012-06-19 13:23:36 +00:00
|
|
|
-I$(topsrcdir)/editor/txmgr/src \
|
2008-03-13 18:54:01 +00:00
|
|
|
-I$(topsrcdir)/content/base/src \
|
|
|
|
$(NULL)
|