blob: b5cf171287809844a37115e3b3d8d279c12c2fe2 (
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
|
# $OpenBSD: Makefile,v 1.4 2001/01/28 22:45:05 niklas Exp $
PROG= photurisd
LDADD= -lcrypto -ldes
DPADD= ${LIBCRYPTO} ${LIBDES}
SRCS= photuris_cookie_request.c photuris_cookie_response.c \
photuris_value_request.c photuris_value_response.c \
photuris_identity_request.c photuris_identity_response.c \
photuris_spi_needed.c photuris_spi_update.c photuris_error_message.c \
photuris_packet_encrypt.c \
handle_cookie_request.c handle_value_request.c \
handle_cookie_response.c handle_value_response.c \
handle_identity_request.c handle_identity_response.c \
handle_spi_needed.c handle_spi_update.c\
handle_bad_cookie.c handle_resource_limit.c \
handle_verification_failure.c handle_message_reject.c \
log.c config.c scheme.c schedule.c server.c \
buffer.c compute_secrets.c cookie.c exchange.c identity.c \
modulus.c spi.c state.c validity.c attributes.c \
photurisd.c packet.c api.c kernel.c
CFLAGS+= -I. -DIPSEC
MAN= photurisd.8
.include <bsd.prog.mk>
|