pjs/editor/txtsvc/public/Makefile.in

46 строки
1.1 KiB
Makefile
Исходник Обычный вид История

1999-03-31 23:25:05 +04:00
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
1999-03-31 23:25:05 +04:00
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
1999-03-31 23:25:05 +04:00
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
1999-03-31 23:25:05 +04:00
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
1999-09-09 07:34:19 +04:00
#
1999-03-31 23:25:05 +04:00
1999-09-09 07:34:19 +04:00
DEPTH = ../../..
1999-03-31 23:25:05 +04:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
1999-09-09 07:34:19 +04:00
MODULE = txtsvc
1999-03-31 23:25:05 +04:00
1999-09-09 07:34:19 +04:00
EXPORTS = \
nsISpellChecker.h \
nsITextService.h \
nsITextServicesDocument.h \
nsTextServicesCID.h \
$(NULL)
1999-03-31 23:25:05 +04:00
Fix for bug #6254 (Find/Replace needs to be implemented.) First pass implementation of Find and Replace. sr=sfraser@netscape.com r=ducarroz@netscape.com New Files: editor/txtsvc/macbuild/txtsvcIDL.mcp editor/txtsvc/public/MANIFEST_IDL editor/txtsvc/public/nsIFindAndReplace.idl editor/txtsvc/src/nsFindAndReplace.cpp editor/txtsvc/src/nsFindAndReplace.h xpfe/components/find/resources/replacedialog.js xpfe/components/find/resources/replacedialog.xul xpfe/components/find/resources/locale/en-US/replacedialog.dtd Modified Files: build/mac/build_scripts/MozillaBuildList.pm editor/base/nsEditorShell.cpp editor/idl/nsIEditorShell.idl editor/txtsvc/macbuild/txtsvc.mcp editor/txtsvc/public/Makefile.in editor/txtsvc/public/makefile.win editor/txtsvc/public/MANIFEST editor/txtsvc/src/Makefile.in editor/txtsvc/src/makefile.win editor/txtsvc/src/nsTextServicesFactory.cpp editor/ui/composer/content/ComposerCommands.js editor/ui/composer/content/editor.js editor/ui/composer/content/editorOverlay.xul editor/ui/composer/locale/en-US/editorOverlay.dtd mailnews/compose/resources/content/messengercompose.xul mailnews/compose/resources/content/MsgComposeCommands.js mailnews/compose/resources/locale/en-US/messengercompose.dtd xpfe/components/jar.mn xpfe/components/find/public/nsIFindComponent.idl xpfe/components/find/public/nsISearchContext.idl xpfe/components/find/resources/makefile.win xpfe/components/find/resources/MANIFEST xpfe/components/find/resources/locale/en-US/MANIFEST xpfe/components/find/src/nsFindComponent.cpp xpfe/components/find/src/nsFindComponent.h
2001-01-24 00:55:04 +03:00
XPIDLSRCS = \
nsIFindAndReplace.idl \
$(NULL)
1999-09-09 07:34:19 +04:00
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
1999-03-31 23:25:05 +04:00
include $(topsrcdir)/config/rules.mk
1999-09-09 07:34:19 +04:00