diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-04-01 06:43:24 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2021-04-01 06:43:24 +0000 |
commit | e593ac41a045416270529ead52bfd34650590f04 (patch) | |
tree | 5dc9fb1ea91fbb2c0d8d8d85a840b78b240e824c /usr.sbin/rpki-client/Makefile | |
parent | 460fb214c8113f82a3b24cfb9eb55ccfe5311288 (diff) |
Move base64 and hex encoding functions into their own place.
OK tb@
Diffstat (limited to 'usr.sbin/rpki-client/Makefile')
-rw-r--r-- | usr.sbin/rpki-client/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.sbin/rpki-client/Makefile b/usr.sbin/rpki-client/Makefile index 16713b946ca..9d17b18351c 100644 --- a/usr.sbin/rpki-client/Makefile +++ b/usr.sbin/rpki-client/Makefile @@ -1,9 +1,10 @@ -# $OpenBSD: Makefile,v 1.19 2021/03/04 13:01:41 claudio Exp $ +# $OpenBSD: Makefile,v 1.20 2021/04/01 06:43:23 claudio Exp $ PROG= rpki-client -SRCS= as.c cert.c cms.c crl.c gbr.c http.c io.c ip.c log.c main.c mft.c \ - mkdir.c output.c output-bgpd.c output-bird.c output-csv.c \ - output-json.c parser.c roa.c rsync.c tal.c validate.c x509.c +SRCS= as.c cert.c cms.c crl.c encoding.c gbr.c http.c io.c ip.c log.c \ + main.c mft.c mkdir.c output.c output-bgpd.c output-bird.c \ + output-csv.c output-json.c parser.c roa.c rsync.c tal.c validate.c \ + x509.c MAN= rpki-client.8 LDADD+= -ltls -lssl -lcrypto -lutil |