2001-12-18 09:14:29 +00:00
|
|
|
#
|
2004-04-18 22:01:16 +00:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
2001-12-18 09:14:29 +00:00
|
|
|
# Contributor(s):
|
|
|
|
#
|
2004-04-18 22:01:16 +00:00
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
2001-12-18 09:14:29 +00:00
|
|
|
|
|
|
|
DEPTH = ../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = widget
|
|
|
|
LIBRARY_NAME = widget_windows
|
|
|
|
|
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
dom \
|
|
|
|
accessibility \
|
|
|
|
content \
|
|
|
|
content_xul \
|
|
|
|
gfx \
|
|
|
|
gfxwin \
|
|
|
|
necko \
|
|
|
|
pref \
|
|
|
|
plugin \
|
|
|
|
timer \
|
|
|
|
uconv \
|
|
|
|
intl \
|
|
|
|
locale \
|
|
|
|
webshell \
|
|
|
|
docshell \
|
|
|
|
layout \
|
|
|
|
xuldoc \
|
2002-02-20 07:18:05 +00:00
|
|
|
view \
|
2001-12-18 09:14:29 +00:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
nsNativeDragTarget.cpp \
|
|
|
|
nsNativeDragSource.cpp \
|
|
|
|
nsDragService.cpp \
|
|
|
|
L_Ienumfe.cpp \
|
|
|
|
nsDataObj.cpp \
|
|
|
|
nsDataObjCollection.cpp \
|
|
|
|
nsClipboard.cpp \
|
|
|
|
nsWindow.cpp \
|
|
|
|
nsFilePicker.cpp \
|
|
|
|
nsAppShell.cpp \
|
|
|
|
nsLookAndFeel.cpp \
|
|
|
|
nsToolkit.cpp \
|
|
|
|
nsSound.cpp \
|
|
|
|
nsImageClipboard.cpp \
|
|
|
|
nsBidiKeyboard.cpp \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
|
2002-11-08 22:47:01 +00:00
|
|
|
DEFINES += -D_IMPL_NS_WIDGET -DMOZ_AIMM -DMOZ_UNICODE
|
2002-07-03 00:55:47 +00:00
|
|
|
|
2002-12-23 22:32:22 +00:00
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
DEFINES += -DMOZ_STATIC_COMPONENT_LIBS
|
|
|
|
endif # BUILD_STATIC_LIBS
|
|
|
|
|
|
|
|
|
2001-12-18 09:14:29 +00:00
|
|
|
EXPORTS = nsdefs.h
|
|
|
|
|
2001-12-19 07:47:15 +00:00
|
|
|
LOCAL_INCLUDES = -I. -I$(srcdir)/../xpwidgets -I$(srcdir)
|
2001-12-18 09:14:29 +00:00
|
|
|
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
2002-06-17 17:09:57 +00:00
|
|
|
GARBAGE += L_Ienumfe.cpp $(srcdir)/L_Ienumfe.cpp
|
2001-12-18 09:14:29 +00:00
|
|
|
|
2002-12-13 02:36:06 +00:00
|
|
|
SRCS_IN_OBJDIR = 1
|
|
|
|
|
2004-11-23 19:34:02 +00:00
|
|
|
ENABLE_CXX_EXCEPTIONS = 1
|
2001-12-18 09:14:29 +00:00
|
|
|
|
2004-11-23 19:34:02 +00:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
2004-04-13 06:08:49 +00:00
|
|
|
|
2001-12-18 09:14:29 +00:00
|
|
|
# Silly case-insensitive fs
|
2002-06-17 17:09:57 +00:00
|
|
|
export:: IENUMFE.CPP
|
2003-01-03 08:58:59 +00:00
|
|
|
cp -a $< L_Ienumfe.cpp
|
2002-06-17 17:09:57 +00:00
|
|
|
|
2001-12-18 09:14:29 +00:00
|
|
|
|