1998-11-11 06:34:37 +03:00
|
|
|
#!gmake
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Netscape Public License
|
|
|
|
# Version 1.0 (the "NPL"); you may not use this file except in
|
|
|
|
# compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
# http://www.mozilla.org/NPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# NPL.
|
|
|
|
#
|
|
|
|
# The Initial Developer of this code under the NPL is Netscape
|
|
|
|
# Communications Corporation. Portions created by Netscape are
|
|
|
|
# Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
# Reserved.
|
|
|
|
|
|
|
|
DEPTH=../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
1998-11-18 23:20:08 +03:00
|
|
|
LIBRARY_NAME = ender
|
1999-03-03 04:25:21 +03:00
|
|
|
IS_COMPONENT = 1
|
1998-11-11 06:34:37 +03:00
|
|
|
|
|
|
|
CPPSRCS = \
|
1999-02-12 20:18:58 +03:00
|
|
|
nsEditor.cpp \
|
|
|
|
nsTextEditor.cpp \
|
1999-03-10 22:47:34 +03:00
|
|
|
nsTextEditRules.cpp \
|
1999-02-12 20:18:58 +03:00
|
|
|
nsEditorEventListeners.cpp \
|
1999-02-24 20:24:37 +03:00
|
|
|
nsEditProperty.cpp \
|
1998-11-28 04:19:53 +03:00
|
|
|
nsEditFactory.cpp \
|
1999-03-02 08:30:53 +03:00
|
|
|
nsHTMLEditFactory.cpp \
|
|
|
|
nsHTMLEditor.cpp \
|
1999-02-12 20:18:58 +03:00
|
|
|
nsTextEditFactory.cpp \
|
1999-01-06 23:31:30 +03:00
|
|
|
ChangeAttributeTxn.cpp \
|
|
|
|
EditTxn.cpp \
|
1999-01-21 04:51:09 +03:00
|
|
|
EditAggregateTxn.cpp \
|
1999-03-02 08:30:53 +03:00
|
|
|
EditTable.cpp \
|
|
|
|
InsertTableTxn.cpp \
|
|
|
|
InsertTableCellTxn.cpp \
|
|
|
|
InsertTableColumnTxn.cpp \
|
|
|
|
InsertTableRowTxn.cpp \
|
|
|
|
DeleteTableTxn.cpp \
|
|
|
|
DeleteTableCellTxn.cpp \
|
|
|
|
DeleteTableColumnTxn.cpp \
|
|
|
|
DeleteTableRowTxn.cpp \
|
|
|
|
JoinTableCellsTxn.cpp \
|
1999-01-07 04:28:34 +03:00
|
|
|
InsertTextTxn.cpp \
|
1999-01-07 20:58:15 +03:00
|
|
|
DeleteTextTxn.cpp \
|
1999-01-08 01:36:23 +03:00
|
|
|
CreateElementTxn.cpp \
|
1999-02-24 20:24:37 +03:00
|
|
|
InsertElementTxn.cpp \
|
1999-01-14 21:02:45 +03:00
|
|
|
DeleteElementTxn.cpp \
|
|
|
|
DeleteRangeTxn.cpp \
|
|
|
|
SplitElementTxn.cpp \
|
1999-01-21 04:51:09 +03:00
|
|
|
JoinElementTxn.cpp \
|
|
|
|
TransactionFactory.cpp \
|
1998-11-11 06:34:37 +03:00
|
|
|
$(NULL)
|
|
|
|
|
1998-11-18 23:20:08 +03:00
|
|
|
MODULE = editor
|
1998-11-11 06:34:37 +03:00
|
|
|
|
1999-03-05 00:53:42 +03:00
|
|
|
REQUIRES = xpcom raptor dom base netlib
|
1998-11-11 06:34:37 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|