blob: 9122bc9b1c68c8bd4ace584d0b55d89a1004087f (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
# $NetBSD: Makefile,v 1.2 2012/11/20 05:26:25 agc Exp $
PROG=netpgpv
SRCS=libverify.c b64.c pgpsum.c
SRCS+=digest.c tiger.c
SRCS+=bignum.c misc.c
SRCS+=rsaglue.c rsa.c
SRCS+=main.c
WARNS=5
MKMAN=no
CPPFLAGS+=-I${.CURDIR}/../libbn
CPPFLAGS+=-I${.CURDIR}/../librsa
LDADD+=-lz
LDADD+=-lbz2
# XXX - debugging
#CPPFLAGS+=-g -O0
#LDFLAGS+=-g -O0
#CPPFLAGS+=-O3
#LDFLAGS+=-O3
.PATH: ${.CURDIR} ${.CURDIR}/../libdigest ${.CURDIR}/../libverify ${.CURDIR}/../libbn ${.CURDIR}/../librsa
.include <bsd.prog.mk>
t: ${PROG}
./${PROG} -c verify b.gpg > output16
diff expected16 output16
rm -f output16
./${PROG} -c verify a.gpg > output17
diff expected17 output17
rm -f output17
./${PROG} -c verify gpgsigned-a.gpg > output18
diff expected18 output18
rm -f output18
./${PROG} -c verify NetBSD-6.0_RC2_hashes.asc > output19
diff expected19 output19
rm -f output19
./${PROG} -c cat jj.asc > output20
diff expected20 output20
rm -f output20
./${PROG} < a.gpg > output21
diff expected21 output21
rm -f output21
./${PROG} < jj.asc > output22
diff expected22 output22
rm -f output22
./${PROG} < NetBSD-6.0_RC2_hashes.asc > output23
diff expected23 output23
rm -f output23
./${PROG} < b.gpg > output24
diff expected24 output24
rm -f output24
./${PROG} NetBSD-6.0_RC1_hashes.gpg > output25
diff expected25 output25
rm -f output25
./${PROG} < NetBSD-6.0_RC1_hashes.gpg > output26
diff expected26 output26
rm -f output26
./${PROG} < NetBSD-6.0_hashes.asc > output27
diff expected27 output27
rm -f output27
./${PROG} NetBSD-6.0_hashes.asc > output28
diff expected28 output28
rm -f output28
./${PROG} NetBSD-6.0_RC1_hashes_ascii.gpg > output29
diff expected29 output29
rm -f output29
./${PROG} < NetBSD-6.0_RC1_hashes_ascii.gpg > output30
diff expected30 output30
rm -f output30
|