2007-03-22 10:30:00 -07:00
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2007-03-22 10:30:00 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
LIBRARY_NAME = wdgtos2
|
|
|
|
EXPORT_LIBRARY = 1
|
|
|
|
IS_COMPONENT = 1
|
|
|
|
RESFILE = widget.res
|
|
|
|
MODULE_NAME = nsWidgetOS2Module
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
|
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
nsAppShell.cpp \
|
|
|
|
nsBidiKeyboard.cpp \
|
|
|
|
nsClipboard.cpp \
|
|
|
|
nsFilePicker.cpp \
|
2010-03-06 09:52:10 -08:00
|
|
|
os2FrameWindow.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsLookAndFeel.cpp \
|
2007-09-08 09:22:56 -07:00
|
|
|
nsOS2Uni.cpp \
|
|
|
|
nsPrintOS2.cpp \
|
2009-10-18 00:29:08 -07:00
|
|
|
nsSound.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
nsWidgetFactory.cpp \
|
|
|
|
nsWindow.cpp \
|
|
|
|
nsDragService.cpp \
|
|
|
|
nsScreenOS2.cpp \
|
|
|
|
nsScreenManagerOS2.cpp \
|
|
|
|
nsDeviceContextSpecOS2.cpp \
|
|
|
|
nsPrintOptionsOS2.cpp \
|
2008-01-09 14:24:05 -08:00
|
|
|
nsRwsService.cpp \
|
2008-02-13 13:46:42 -08:00
|
|
|
nsIdleServiceOS2.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
SHARED_LIBRARY_LIBS = \
|
|
|
|
../xpwidgets/$(LIB_PREFIX)xpwidgets_s.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2012-05-25 23:44:00 -07:00
|
|
|
CXXFLAGS += $(MOZ_CAIRO_CFLAGS) $(MOZ_PIXMAN_CFLAGS)
|
2009-05-19 22:47:08 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
DEFINES += -D_IMPL_NS_WIDGET
|
|
|
|
|
|
|
|
DEFINES += -DUSE_OS2_TOOLKIT_HEADERS
|
|
|
|
|
2008-05-24 09:18:27 -07:00
|
|
|
DEFINES += -DMOZ_APP_DISPLAYNAME=\"$(MOZ_APP_DISPLAYNAME)\"
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
LOCAL_INCLUDES = -I. -I$(srcdir)/../xpwidgets -I$(srcdir)
|
|
|
|
|
2009-11-04 15:20:12 -08:00
|
|
|
install-readme: README.$(MOZ_APP_NAME)
|
2009-07-30 11:20:44 -07:00
|
|
|
ifneq (,$(filter-out xulrunner sunbird,$(MOZ_APP_NAME)))
|
2008-12-05 13:11:22 -08:00
|
|
|
cp -f $^ $(DIST)/bin/README.txt
|
2009-07-30 11:20:44 -07:00
|
|
|
endif
|
2008-12-05 13:11:22 -08:00
|
|
|
|
2009-11-04 15:20:12 -08:00
|
|
|
libs:: install-readme
|
|
|
|
$(INSTALL) $(srcdir)/MozSounds.cmd $(DIST)/bin/
|
|
|
|
|
2013-03-05 09:27:58 -08:00
|
|
|
export-preqs = \
|
|
|
|
$(call mkdir_deps,res) \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
export:: $(export-preqs)
|
2007-03-22 10:30:00 -07:00
|
|
|
test -f ./res/aliasb.ptr || cp $(srcdir)/res/*.* ./res
|
|
|
|
|
|
|
|
|