Blame nss/cmd/shlibsign/mangle/Makefile

Packit 40b132
#! gmake
Packit 40b132
#
Packit 40b132
# This Source Code Form is subject to the terms of the Mozilla Public
Packit 40b132
# License, v. 2.0. If a copy of the MPL was not distributed with this
Packit 40b132
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
Packit 40b132
Packit 40b132
#######################################################################
Packit 40b132
# (1) Include initial platform-independent assignments (MANDATORY).   #
Packit 40b132
#######################################################################
Packit 40b132
Packit 40b132
include manifest.mn
Packit 40b132
Packit 40b132
#######################################################################
Packit 40b132
# (2) Include "global" configuration information. (OPTIONAL)          #
Packit 40b132
#######################################################################
Packit 40b132
Packit 40b132
include $(CORE_DEPTH)/coreconf/config.mk
Packit 40b132
Packit 40b132
#######################################################################
Packit 40b132
# (3) Include "component" configuration information. (OPTIONAL)       #
Packit 40b132
#######################################################################
Packit 40b132
Packit 40b132
#######################################################################
Packit 40b132
# (4) Include "local" platform-dependent assignments (OPTIONAL).      #
Packit 40b132
#######################################################################
Packit 40b132
Packit 40b132
ifeq ($(OS_ARCH), WINNT)
Packit 40b132
Packit 40b132
EXTRA_LIBS += \
Packit 40b132
	$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)plc4.$(LIB_SUFFIX) \
Packit 40b132
	$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)plds4.$(LIB_SUFFIX) \
Packit 40b132
	$(NSPR_LIB_DIR)/$(NSPR31_LIB_PREFIX)nspr4.$(LIB_SUFFIX) \
Packit 40b132
	$(NULL)
Packit 40b132
Packit 40b132
else
Packit 40b132
Packit 40b132
EXTRA_SHARED_LIBS += \
Packit 40b132
	-L$(NSPR_LIB_DIR) \
Packit 40b132
	-lplc4 \
Packit 40b132
	-lplds4 \
Packit 40b132
	-lnspr4 \
Packit 40b132
	$(NULL)
Packit 40b132
Packit 40b132
endif
Packit 40b132
Packit 40b132
Packit 40b132
Packit 40b132
#######################################################################
Packit 40b132
# (5) Execute "global" rules. (OPTIONAL)                              #
Packit 40b132
#######################################################################
Packit 40b132
Packit 40b132
include $(CORE_DEPTH)/coreconf/rules.mk
Packit 40b132
Packit 40b132
#######################################################################
Packit 40b132
# (6) Execute "component" rules. (OPTIONAL)                           #
Packit 40b132
#######################################################################
Packit 40b132
Packit 40b132
Packit 40b132
#######################################################################
Packit 40b132
# (7) Execute "local" rules. (OPTIONAL).                              #
Packit 40b132
#######################################################################
Packit 40b132
Packit 40b132
Packit 40b132
include ../../platrules.mk
Packit 40b132