blob: 6b8e3013aec91831cf393e98e72a0b6f0d33e670 (
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
|
# $OpenBSD: Makefile,v 1.17 2017/07/19 12:50:32 espie Exp $
PROG= iked
SRCS= ca.c chap_ms.c config.c control.c crypto.c dh.c \
eap.c iked.c ikev2.c ikev2_msg.c ikev2_pld.c \
log.c ocsp.c pfkey.c policy.c proc.c timer.c util.c \
imsg_util.c smult_curve25519_ref.c
SRCS+= eap_map.c ikev2_map.c
SRCS+= parse.y
MAN= iked.conf.5 iked.8
#NOMAN= yes
LDADD= -lutil -levent -lcrypto
DPADD= ${LIBUTIL} ${LIBEVENT} ${LIBCRYPTO}
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CLEANFILES+= ikev2_map.c eap_map.c
GENERATED= ikev2_map.c eap_map.c
YFLAGS=
ikev2_map.c: genmap.sh ikev2.h
/bin/sh ${.CURDIR}/genmap.sh ${.CURDIR}/ikev2.h ikev2 > $@
@touch $@
eap_map.c: genmap.sh eap.h
/bin/sh ${.CURDIR}/genmap.sh ${.CURDIR}/eap.h eap > $@
@touch $@
.include <bsd.prog.mk>
# Don't compile iked as static binary by default
LDSTATIC=
|