1998-11-11 03:34:37 +00: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 20:20:08 +00:00
|
|
|
LIBRARY_NAME = ender
|
1999-03-03 01:25:21 +00:00
|
|
|
IS_COMPONENT = 1
|
1998-11-11 03:34:37 +00:00
|
|
|
|
|
|
|
CPPSRCS = \
|
1999-02-12 17:18:58 +00:00
|
|
|
nsEditor.cpp \
|
|
|
|
nsTextEditor.cpp \
|
1999-03-10 19:47:34 +00:00
|
|
|
nsTextEditRules.cpp \
|
1999-04-15 06:06:33 +00:00
|
|
|
TextEditorTest.cpp \
|
1999-03-29 08:01:21 +00:00
|
|
|
nsHTMLEditRules.cpp \
|
1999-02-12 17:18:58 +00:00
|
|
|
nsEditorEventListeners.cpp \
|
1999-02-24 17:24:37 +00:00
|
|
|
nsEditProperty.cpp \
|
1998-11-28 01:19:53 +00:00
|
|
|
nsEditFactory.cpp \
|
1999-03-02 05:30:53 +00:00
|
|
|
nsHTMLEditFactory.cpp \
|
|
|
|
nsHTMLEditor.cpp \
|
1999-02-12 17:18:58 +00:00
|
|
|
nsTextEditFactory.cpp \
|
1999-01-06 20:31:30 +00:00
|
|
|
ChangeAttributeTxn.cpp \
|
|
|
|
EditTxn.cpp \
|
1999-01-21 01:51:09 +00:00
|
|
|
EditAggregateTxn.cpp \
|
1999-03-02 05:30:53 +00:00
|
|
|
EditTable.cpp \
|
|
|
|
InsertTableTxn.cpp \
|
|
|
|
InsertTableCellTxn.cpp \
|
|
|
|
InsertTableColumnTxn.cpp \
|
|
|
|
InsertTableRowTxn.cpp \
|
|
|
|
DeleteTableTxn.cpp \
|
|
|
|
DeleteTableCellTxn.cpp \
|
|
|
|
DeleteTableColumnTxn.cpp \
|
|
|
|
DeleteTableRowTxn.cpp \
|
|
|
|
JoinTableCellsTxn.cpp \
|
1999-01-07 01:28:34 +00:00
|
|
|
InsertTextTxn.cpp \
|
1999-05-07 19:23:17 +00:00
|
|
|
nsInsertHTMLTxn.cpp \
|
1999-03-15 00:57:32 +00:00
|
|
|
PlaceholderTxn.cpp \
|
1999-01-07 17:58:15 +00:00
|
|
|
DeleteTextTxn.cpp \
|
1999-01-07 22:36:23 +00:00
|
|
|
CreateElementTxn.cpp \
|
1999-02-24 17:24:37 +00:00
|
|
|
InsertElementTxn.cpp \
|
1999-01-14 18:02:45 +00:00
|
|
|
DeleteElementTxn.cpp \
|
|
|
|
DeleteRangeTxn.cpp \
|
|
|
|
SplitElementTxn.cpp \
|
1999-01-21 01:51:09 +00:00
|
|
|
JoinElementTxn.cpp \
|
|
|
|
TransactionFactory.cpp \
|
1999-05-27 00:08:15 +00:00
|
|
|
nsInternetCiter.cpp \
|
|
|
|
nsAOLCiter.cpp \
|
1999-06-11 19:32:15 +00:00
|
|
|
nsEditorShell.cpp \
|
1999-06-11 19:00:22 +00:00
|
|
|
nsEditorShellFactory.cpp \
|
1999-06-14 20:02:46 +00:00
|
|
|
nsJSEditorLog.cpp \
|
|
|
|
nsJSTxnLog.cpp \
|
1998-11-11 03:34:37 +00:00
|
|
|
$(NULL)
|
|
|
|
|
1998-11-18 20:20:08 +00:00
|
|
|
MODULE = editor
|
1998-11-11 03:34:37 +00:00
|
|
|
|
1999-06-14 20:02:46 +00:00
|
|
|
DEFINES += -DENABLE_JS_EDITOR_LOG
|
|
|
|
|
1998-11-11 03:34:37 +00:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|