mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-06 06:22:33 +00:00
5169c0a913
From 9e0ba7f425143f545eb6c4b26a9a96b5ade4d8e9 Mon Sep 17 00:00:00 2001
38 lines
823 B
Makefile
38 lines
823 B
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
|
|
|
|
LIBRARY_NAME = mozgnome
|
|
FORCE_SHARED_LIB = 1
|
|
IS_COMPONENT = 1
|
|
FAIL_ON_WARNINGS = 1
|
|
|
|
EXTRA_DSO_LDOPTS += \
|
|
$(XPCOM_GLUE_LDOPTS) \
|
|
$(XPCOM_FROZEN_LDOPTS) \
|
|
$(NSPR_LIBS) \
|
|
$(MOZ_GCONF_LIBS) \
|
|
$(MOZ_GNOMEVFS_LIBS) \
|
|
$(GLIB_LIBS) \
|
|
$(MOZ_GIO_LIBS) \
|
|
$(NULL)
|
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/toolkit/components/build/
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
CXXFLAGS += \
|
|
$(MOZ_GCONF_CFLAGS) \
|
|
$(MOZ_GNOMEVFS_CFLAGS) \
|
|
$(MOZ_GIO_CFLAGS) \
|
|
$(GLIB_CFLAGS) \
|
|
$(MOZ_GTK2_CFLAGS) \
|
|
$(NULL)
|