blob: a1a1cea19e65eafb8d8d4fb3ed5e5893b9ca9718 (
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
|
# $NetBSD: Makefile,v 1.6 2002/09/01 06:01:13 onoe Exp $
# RCSid:
# Id: Makefile,v 1.33 1998/11/11 11:53:53 sjg Exp
#
# @(#) Copyright (c) 1994 Simon J. Gerraty
#
# This file is provided in the hope that it will
# be of use. There is absolutely NO WARRANTY.
# Permission to copy, redistribute or otherwise
# use this file is hereby granted provided that
# the above copyright notice and this notice are
# left intact.
#
# Please send copies of changes and bug-fixes to:
# sjg@quick.com.au
#
NOPIC= # defined
#NOPROFILE= # defined
#NOLINT= # defined
.include <bsd.own.mk>
# XXX There's a bit of work to do before we can enable warnings.
WARNS= 0
LIB= crypto_idea
CPPFLAGS+= -Dlib${LIB} -I. -I${OPENSSLSRC}/crypto -I${OPENSSLSRC}
CRYPTODIST= ${NETBSDSRCDIR}/crypto/dist
.include "${NETBSDSRCDIR}/crypto/Makefile.openssl"
.PATH: ${OPENSSLSRC} ${OPENSSLSRC}/crypto/idea ${OPENSSLSRC}/crypto/evp
CPPFLAGS+= -I${OPENSSLSRC}/crypto/idea
SRCS+= i_cbc.c i_skey.c e_idea.c c_allc.c
# XXX
.if ${OBJECT_FMT} == "ELF"
AFLAGS+= -DELF
.else
AFLAGS+= -DOUT
.endif
.include <bsd.lib.mk>
|