Imported Upstream version 0.66.1
[hcoop/debian/courier-authlib.git] / libs / sha1 / Makefile.am
1 #
2 # Copyright 2001-2008 Double Precision, Inc.
3 # See COPYING for distribution information.
4 #
5
6
7 if HMACC
8 HMAC=hmac.c
9 else
10 HMAC=
11 endif
12
13 noinst_LTLIBRARIES=libsha1.la
14
15 libsha1_la_SOURCES=sha1.c sha1.h sha1_hash.c sha256.c sha256_hash.c sha512.c sha512_hash.c $(HMAC)
16
17 noinst_PROGRAMS=testsuite
18
19 testsuite_SOURCES=testsuite.c
20 testsuite_DEPENDENCIES=libsha1.la
21 testsuite_LDADD=$(testsuite_DEPENDENCIES)
22 testsuite_LDFLAGS=-static
23
24 EXTRA_DIST=testsuite.txt hmac.c
25
26 check-am:
27 ./testsuite | cmp -s - $(srcdir)/testsuite.txt