Blame nss/cmd/crmftest/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
Packit 40b132
#######################################################################
Packit 40b132
# (4) Include "local" platform-dependent assignments (OPTIONAL).      #
Packit 40b132
#######################################################################
Packit 40b132
include config.mk
Packit 40b132
Packit 40b132
ifeq ($(OS_TARGET)$(OS_RELEASE), AIX4.2)
Packit 40b132
OS_LIBS += -lsvld 
Packit 40b132
endif 
Packit 40b132
Packit 40b132
ifeq ($(OS_TARGET)$(OS_RELEASE), SunOS5.6)
Packit 40b132
OS_LIBS += -ldl -lxnet -lposix4 -lsocket -lnsl
Packit 40b132
endif
Packit 40b132
Packit 40b132
EXTRA_LIBS += $(DIST)/lib/$(LIB_PREFIX)crmf.$(LIB_SUFFIX)
Packit 40b132
Packit 40b132
include ../platlibs.mk
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
#######################################################################
Packit 40b132
# (7) Execute "local" rules. (OPTIONAL).                              #
Packit 40b132
#######################################################################
Packit 40b132
Packit 40b132
LDDIST = $(DIST)/lib
Packit 40b132
Packit 40b132
ifeq (,$(filter-out WIN%,$(OS_TARGET)))
Packit 1d5ebc
#EXTRA_LIBS += $(LDDIST)/sectool.lib
Packit 40b132
endif
Packit 40b132
Packit 40b132
include ../platrules.mk