2007-03-22 10:30:00 -07:00
|
|
|
# vim:set ts=8 sw=8 sts=8 noet:
|
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2012-02-28 10:58:42 -08:00
|
|
|
DIRS = src
|
2012-02-24 13:29:42 -08:00
|
|
|
MODULE = libmar_test
|
|
|
|
|
2012-02-28 10:58:42 -08:00
|
|
|
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
|
2012-05-27 20:25:22 -07:00
|
|
|
TEST_DIRS += tests
|
2012-02-28 10:58:42 -08:00
|
|
|
endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|