gecko/toolkit/components/alerts/mac/Makefile.in
2012-05-21 12:12:37 +01:00

55 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 = ../../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = alerts
LIBRARY_NAME = alerts
IS_COMPONENT = 1
FORCE_SHARED_LIB = 1
CMMSRCS = \
nsAlertsService.mm \
mozGrowlDelegate.mm \
nsAlertsImageLoadListener.mm \
nsNotificationsList.mm \
$(NULL)
CPPSRCS = \
nsAlertsServiceModule.cpp \
$(NULL)
LOCAL_INCLUDES += \
-I$(srcdir)/growl/ \
-I$(topsrcdir)/toolkit/components/build/ \
$(NULL)
EXPORTS = \
nsAlertsService.h \
$(NULL)
SHARED_LIBRARY_LIBS = \
growl/$(LIB_PREFIX)growl_s.$(LIB_SUFFIX) \
$(NULL)
ifdef JS_SHARED_LIBRARY
js_ldopts = $(MOZ_JS_LIBS)
else
js_ldopts = $(LIBXUL_LIBS)
endif
EXTRA_DSO_LDOPTS += \
-framework Carbon \
$(XPCOM_GLUE_LDOPTS) \
$(js_ldopts) \
$(NSPR_LIBS) \
$(NULL)
include $(topsrcdir)/config/rules.mk