File: Makefile.am

package info (click to toggle)
courier-authlib 0.58-4%2Betch3
  • links: PTS
  • area: main
  • in suites: etch
  • size: 16,212 kB
  • ctags: 1,896
  • sloc: ansic: 21,550; sh: 14,071; makefile: 866; perl: 842; cpp: 284
file content (30 lines) | stat: -rw-r--r-- 895 bytes parent folder | download | duplicates (3)
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
30
#$Id: Makefile.am,v 1.8 2005/06/19 13:15:28 mrsam Exp $
#
# Copyright 1998 - 2005 Double Precision, Inc.  See COPYING for
# distribution information.

AUTOMAKE = srcdir=${srcdir} @SHELL@ ${srcdir}/../automake.fix @AUTOMAKE@

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