security/nss/cmd/Makefile

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/security/nss/cmd/Makefile	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,40 @@
     1.4 +#! gmake
     1.5 +# 
     1.6 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this
     1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/.
     1.9 +
    1.10 +CORE_DEPTH = ..
    1.11 +DEPTH = ..
    1.12 +
    1.13 +include manifest.mn
    1.14 +include $(CORE_DEPTH)/coreconf/config.mk
    1.15 +
    1.16 +ifdef BUILD_LIBPKIX_TESTS
    1.17 +DIRS += libpkix
    1.18 +endif
    1.19 +
    1.20 +ifeq ($(NSS_BUILD_WITHOUT_SOFTOKEN),1)
    1.21 +BLTEST_SRCDIR =
    1.22 +FIPSTEST_SRCDIR =
    1.23 +SHLIBSIGN_SRCDIR =
    1.24 +else
    1.25 +BLTEST_SRCDIR = bltest
    1.26 +FIPSTEST_SRCDIR = fipstest
    1.27 +SHLIBSIGN_SRCDIR = shlibsign
    1.28 +endif
    1.29 +
    1.30 +LOWHASHTEST_SRCDIR=
    1.31 +ifeq ($(FREEBL_LOWHASH),1)
    1.32 +LOWHASHTEST_SRCDIR = lowhashtest  # Add the lowhashtest directory to DIRS.
    1.33 +endif
    1.34 +
    1.35 +INCLUDES += \
    1.36 +	-I$(DIST)/../public/security \
    1.37 +	-I./include \
    1.38 +	$(NULL)
    1.39 +
    1.40 +include $(CORE_DEPTH)/coreconf/rules.mk
    1.41 +
    1.42 +symbols::
    1.43 +	@echo "TARGETS	= $(TARGETS)"

mercurial