mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
11bcc1cd9e
--HG-- extra : rebase_source : 385d3fd65475ffc18ee44ae088753649470e214b
47 lines
1.0 KiB
Makefile
47 lines
1.0 KiB
Makefile
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
DIST_INSTALL = 1
|
|
FORCE_STATIC_LIB = 1
|
|
STL_FLAGS=
|
|
|
|
EXTRA_DSO_LDOPTS = \
|
|
$(XPCOM_GLUE_LDOPTS) \
|
|
$(XPCOM_FROZEN_LDOPTS) \
|
|
$(MOZ_QT_LIBS) \
|
|
$(NULL)
|
|
|
|
LOCAL_INCLUDES += \
|
|
-I$(topsrcdir)/xpcom/build \
|
|
-I$(topsrcdir)/widget/qt \
|
|
$(NULL)
|
|
|
|
EXPORT_SOURCES = \
|
|
$(topsrcdir)/widget/qt/moziqwidget.h \
|
|
$(topsrcdir)/toolkit/xre/nsQAppInstance.h \
|
|
$(topsrcdir)/toolkit/xre/nsQAppInstance.cpp \
|
|
$(topsrcdir)/widget/qt/mozqglwidgetwrapper.h \
|
|
$(topsrcdir)/widget/qt/mozqglwidgetwrapper.cpp
|
|
|
|
GARBAGE += $(EXPORT_SOURCES)
|
|
export:: $(EXPORT_SOURCES)
|
|
$(INSTALL) $^ .
|
|
|
|
LOCAL_INCLUDES += \
|
|
$(MOZ_QT_CFLAGS) \
|
|
$(MOZ_PLATFORM_MAEMO_CFLAGS) \
|
|
$(NULL)
|
|
|
|
DEFINES += -DLIBRARY_FILENAME="$(SHARED_LIBRARY)" -DMOZ_NO_MOZALLOC -DXPCOM_GLUE
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|