mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
68 lines
1.5 KiB
Makefile
68 lines
1.5 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
|
|
|
|
LIBRARY_NAME = xpcomds_s
|
|
LIBXUL_LIBRARY = 1
|
|
MOZILLA_INTERNAL_API = 1
|
|
|
|
|
|
CPPSRCS = \
|
|
nsArray.cpp \
|
|
nsAtomTable.cpp \
|
|
nsAtomService.cpp \
|
|
nsByteBuffer.cpp \
|
|
nsCRT.cpp \
|
|
nsHashPropertyBag.cpp \
|
|
nsHashtable.cpp \
|
|
nsINIParserImpl.cpp \
|
|
nsObserverList.cpp \
|
|
nsObserverService.cpp \
|
|
nsProperties.cpp \
|
|
nsPersistentProperties.cpp \
|
|
nsStaticNameTable.cpp \
|
|
nsStringEnumerator.cpp \
|
|
nsSupportsArray.cpp \
|
|
nsSupportsArrayEnumerator.cpp \
|
|
nsSupportsPrimitives.cpp \
|
|
nsUnicharBuffer.cpp \
|
|
nsVariant.cpp \
|
|
$(NULL)
|
|
|
|
ifdef HAVE_CLOCK_MONOTONIC
|
|
CPPSRCS += TimeStamp_posix.cpp
|
|
else ifeq ($(OS_ARCH),Darwin)
|
|
CPPSRCS += TimeStamp_darwin.cpp
|
|
else ifeq ($(OS_ARCH),WINNT)
|
|
CPPSRCS += TimeStamp_windows.cpp
|
|
else
|
|
$(error No TimeStamp implementation on this platform. Build will not succeed)
|
|
endif
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
CPPSRCS += nsWindowsRegKey.cpp
|
|
endif
|
|
|
|
EXTRA_COMPONENTS = \
|
|
nsINIProcessor.js \
|
|
nsINIProcessor.manifest \
|
|
$(NULL)
|
|
|
|
# we don't want the shared lib, but we want to force the creation of a static lib.
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../io
|
|
|
|
DEFINES += -D_IMPL_NS_COM
|