gecko-dev/widget/public/Makefile.in

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

1998-10-28 06:53:57 +03: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/
1998-10-28 06:53:57 +03: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.
1998-10-28 06:53:57 +03:00
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
1998-10-28 06:53:57 +03:00
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
1999-09-16 05:09:42 +04:00
#
1998-10-28 06:53:57 +03:00
1999-09-16 05:09:42 +04:00
DEPTH = ../..
1998-10-28 06:53:57 +03:00
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = widget
1999-09-16 05:09:42 +04:00
XPIDL_MODULE = widget
GRE_MODULE = 1
1998-10-28 06:53:57 +03:00
1999-09-16 05:09:42 +04:00
EXPORTS = \
nsIMenuBar.h \
nsIMenu.h \
nsIMenuItem.h \
nsStringUtil.h \
nsIWidget.h \
nsIKBStateControl.h \
1999-09-16 05:09:42 +04:00
nsIButton.h \
nsICheckButton.h \
nsITextWidget.h \
nsGUIEvent.h \
nsEvent.h \
1999-09-16 05:09:42 +04:00
nsIMouseListener.h \
nsIEventListener.h \
nsIMenuListener.h \
nsWidgetsCID.h \
nsILookAndFeel.h \
nsILabel.h \
2000-01-30 12:59:57 +03:00
nsIDragSessionGTK.h \
nsIDragSessionXlib.h \
2000-03-11 06:08:04 +03:00
nsIDragSessionMac.h \
nsIDragSessionOS2.h \
nsIXRemoteWidgetHelper.h \
nsIPluginWidget.h \
1999-09-16 05:09:42 +04:00
$(NULL)
1998-10-28 06:53:57 +03:00
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
EXPORTS += nsWidgetAtoms.h nsWidgetAtomList.h
endif
1999-09-16 05:09:42 +04:00
XPIDLSRCS = \
1999-10-01 12:32:30 +04:00
nsIAppShell.idl \
nsIFilePicker.idl \
1999-10-01 12:32:30 +04:00
nsIToolkit.idl \
1999-09-16 05:09:42 +04:00
nsISound.idl \
nsITransferable.idl \
nsIClipboardDragDropHooks.idl \
nsIClipboardDragDropHookList.idl \
1999-09-16 05:09:42 +04:00
nsIDragSession.idl \
nsIDragService.idl \
nsIFormatConverter.idl \
nsIClipboard.idl \
nsIClipboardHelper.idl \
1999-09-16 05:09:42 +04:00
nsIClipboardOwner.idl \
1999-10-01 12:32:30 +04:00
nsIRollupListener.idl \
nsIMenuRollup.idl \
1999-11-17 08:08:56 +03:00
nsIBaseWindow.idl \
nsIBidiKeyboard.idl \
nsIXRemoteClient.idl \
nsIFullScreen.idl \
2002-03-31 23:07:37 +04:00
nsINativeScrollbar.idl \
1999-09-16 05:09:42 +04:00
$(NULL)
1998-10-28 06:53:57 +03:00
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
XPIDLSRCS += nsIEventSink.idl
endif
1999-09-16 05:09:42 +04:00
EXPORTS := $(addprefix $(srcdir)/, $(EXPORTS))
1998-10-28 06:53:57 +03:00
1999-09-16 05:09:42 +04:00
include $(topsrcdir)/config/rules.mk