diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-11-14 23:37:31 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1998-11-14 23:37:31 +0000 |
commit | 1264df3a5da0b4ba93aa3f250a20101bcc19e1ca (patch) | |
tree | ec96c7e83c6ea2756e246d730c9ceddb9ea8a1d6 /sbin/photurisd/Makefile | |
parent | bf316445157edd81f8d5e3f6e30d26fe295990bb (diff) |
move ipsec tools into .
Diffstat (limited to 'sbin/photurisd/Makefile')
-rw-r--r-- | sbin/photurisd/Makefile | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/sbin/photurisd/Makefile b/sbin/photurisd/Makefile new file mode 100644 index 00000000000..86f525dfa07 --- /dev/null +++ b/sbin/photurisd/Makefile @@ -0,0 +1,23 @@ +PROG= photurisd +LDADD= -lgmp -ldes +DPADD= ${LIBGMP} ${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 \ + errlog.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> |