File: Makefile.am

package info (click to toggle)
cone 0.75-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 31,040 kB
  • ctags: 13,930
  • sloc: ansic: 90,648; cpp: 79,781; sh: 18,355; perl: 3,218; makefile: 1,611; yacc: 289; sed: 16
file content (29 lines) | stat: -rw-r--r-- 822 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#$Id: Makefile.am,v 1.9 2007/06/30 15:40:53 mrsam Exp $
#
# Copyright 1998 - 2005 Double Precision, Inc.  See COPYING for
# distribution information.


noinst_LTLIBRARIES=libhmac.la

libhmac_la_SOURCES=hmac.c hmac.h

noinst_PROGRAMS= @TESTPROGS@

EXTRA_PROGRAMS=md5hmactest sha1hmactest

md5hmactest_SOURCES=md5hmactest.c
md5hmactest_DEPENDENCIES=libhmac.la @hashlibs@
md5hmactest_LDADD=$(md5hmactest_DEPENDENCIES)
md5hmactest_LDFLAGS=-static

sha1hmactest_SOURCES=sha1hmactest.c
sha1hmactest_DEPENDENCIES=libhmac.la @hashlibs@
sha1hmactest_LDADD=$(sha1hmactest_DEPENDENCIES)
sha1hmactest_LDFLAGS=-static

EXTRA_DIST=md5hmactest.txt sha1hmactest.txt

check-am:
	test ! -x ./md5hmactest || ./md5hmactest | cmp -s - $(srcdir)/md5hmactest.txt
	test ! -x ./sha1hmactest || ./sha1hmactest | cmp -s - $(srcdir)/sha1hmactest.txt