mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
34 lines
728 B
Makefile
34 lines
728 B
Makefile
# vim:set ts=8 sw=8 sts=8 noet:
|
|
#
|
|
# 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 = ../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
DIRS = src
|
|
MODULE = libmar_test
|
|
|
|
ifdef MOZ_ENABLE_SIGNMAR
|
|
DIRS += sign verify
|
|
else
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
# On Windows we don't verify with NSS and updater needs to link to it
|
|
DIRS += verify
|
|
endif
|
|
endif
|
|
|
|
# If we are building ./sign and ./verify then ./tool must come after it
|
|
DIRS += tool
|
|
|
|
ifdef MOZ_ENABLE_SIGNMAR
|
|
TEST_DIRS += tests
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|