Imported Debian patch 0.60.1-1
[hcoop/debian/courier-authlib.git] / sha1 / Makefile.am
1 #
2 # Copyright 2001-2005 Double Precision, Inc.
3 # See COPYING for distribution information.
4 #
5 # $Id: Makefile.am,v 1.8 2007/06/30 15:40:53 mrsam Exp $
6
7
8 if HMACC
9 HMAC=hmac.c
10 else
11 HMAC=
12 endif
13
14 noinst_LTLIBRARIES=libsha1.la
15
16 libsha1_la_SOURCES=sha1.c sha1.h sha1_hash.c sha256.c sha256_hash.c $(HMAC)
17
18 noinst_PROGRAMS=testsuite
19
20 testsuite_SOURCES=testsuite.c
21 testsuite_DEPENDENCIES=libsha1.la
22 testsuite_LDADD=$(testsuite_DEPENDENCIES)
23 testsuite_LDFLAGS=-static
24
25 EXTRA_DIST=testsuite.txt hmac.c
26
27 check-am:
28 ./testsuite | cmp -s - $(srcdir)/testsuite.txt