mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 20:17:37 +00:00
57 lines
1.0 KiB
Makefile
57 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
|
|
|
|
MODULE = imgicon
|
|
LIBRARY_NAME = imgicon
|
|
IS_COMPONENT = 1
|
|
MODULE_NAME = nsIconDecoderModule
|
|
LIBXUL_LIBRARY = 1
|
|
EXPORT_LIBRARY = 1
|
|
|
|
ifneq (,$(filter gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
PLATFORM = gtk
|
|
endif
|
|
|
|
ifneq (,$(filter qt,$(MOZ_WIDGET_TOOLKIT)))
|
|
PLATFORM = qt
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
PLATFORM = win
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH),OS2)
|
|
PLATFORM = os2
|
|
endif
|
|
|
|
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
PLATFORM = mac
|
|
endif
|
|
|
|
ifeq ($(OS_TARGET),Android)
|
|
PLATFORM = android
|
|
endif
|
|
|
|
CPPSRCS = \
|
|
nsIconURI.cpp \
|
|
nsIconModule.cpp \
|
|
nsIconProtocolHandler.cpp \
|
|
$(NULL)
|
|
|
|
XPIDLSRCS = nsIIconURI.idl
|
|
|
|
SHARED_LIBRARY_LIBS = $(PLATFORM)/$(LIB_PREFIX)imgicon$(PLATFORM)_s.$(LIB_SUFFIX)
|
|
|
|
LOCAL_INCLUDES = -I$(srcdir)/$(PLATFORM)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|