mirror of
https://github.com/openbsd/src.git
synced 2025-01-10 06:47:55 -08:00
Add json.c to linker instructions
This commit is contained in:
parent
45a3c7e1ab
commit
e0b59cc71b
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.inc,v 1.31 2023/04/18 19:41:50 bluhm Exp $
|
||||
# $OpenBSD: Makefile.inc,v 1.32 2023/05/30 15:56:47 job Exp $
|
||||
|
||||
.PATH: ${.CURDIR}/../../../../usr.sbin/rpki-client
|
||||
|
||||
@ -25,7 +25,7 @@ DPADD+= ${LIBCRYPTO} ${LIBUTIL}
|
||||
CLEANFILES+= *.out *.err *.txt
|
||||
|
||||
SRCS_test-ip += test-ip.c ip.c io.c encoding.c print.c x509.c \
|
||||
log.c validate.c as.c cert.c cms.c crl.c mft.c
|
||||
log.c validate.c as.c cert.c cms.c crl.c mft.c json.c
|
||||
run-regress-test-ip: test-ip
|
||||
./test-ip
|
||||
|
||||
@ -34,48 +34,49 @@ TALARGS += ta/apnic-rpki-root-iana-origin.cer tal/apnic.tal
|
||||
TALARGS += ta/ripe-ncc-ta.cer tal/ripe.tal
|
||||
|
||||
SRCS_test-cert+= test-cert.c cert.c cms.c crl.c x509.c ip.c as.c io.c \
|
||||
log.c tal.c validate.c encoding.c print.c mft.c
|
||||
log.c tal.c validate.c encoding.c print.c mft.c json.c
|
||||
run-regress-test-cert: test-cert
|
||||
./test-cert -v ${.CURDIR}/../cer/*.cer
|
||||
./test-cert -vt ${TALARGS:S,,${.CURDIR}/../&,}
|
||||
|
||||
SRCS_test-mft+= test-mft.c mft.c crl.c cms.c x509.c ip.c io.c log.c validate.c \
|
||||
encoding.c print.c dummy.c
|
||||
encoding.c print.c dummy.c json.c
|
||||
run-regress-test-mft: test-mft
|
||||
./test-mft -v ${.CURDIR}/../mft/*.mft
|
||||
|
||||
SRCS_test-roa+= test-roa.c roa.c cms.c x509.c ip.c as.c io.c log.c \
|
||||
SRCS_test-roa+= test-roa.c roa.c cms.c x509.c ip.c as.c io.c log.c json.c \
|
||||
encoding.c print.c validate.c cert.c crl.c mft.c repo-dummy.c
|
||||
run-regress-test-roa: test-roa
|
||||
./test-roa -v ${.CURDIR}/../roa/*.roa
|
||||
|
||||
SRCS_test-rsc+= test-rsc.c rsc.c cms.c x509.c ip.c as.c io.c log.c \
|
||||
encoding.c print.c validate.c cert.c crl.c mft.c
|
||||
encoding.c print.c validate.c cert.c crl.c mft.c json.c
|
||||
run-regress-test-rsc: test-rsc
|
||||
./test-rsc -v ${.CURDIR}/../rsc/*.sig
|
||||
|
||||
SRCS_test-gbr+= test-gbr.c gbr.c cms.c crl.c x509.c ip.c io.c log.c \
|
||||
encoding.c print.c validate.c as.c cert.c mft.c
|
||||
encoding.c print.c validate.c as.c cert.c mft.c json.c
|
||||
run-regress-test-gbr: test-gbr
|
||||
./test-gbr -v ${.CURDIR}/../gbr/*.gbr
|
||||
|
||||
SRCS_test-geofeed+= test-geofeed.c geofeed.c cms.c x509.c ip.c io.c log.c \
|
||||
encoding.c print.c validate.c as.c cert.c crl.c mft.c
|
||||
encoding.c print.c validate.c as.c cert.c crl.c mft.c json.c
|
||||
run-regress-test-geofeed: test-geofeed
|
||||
./test-geofeed -v ${.CURDIR}/../geofeed/*.csv
|
||||
|
||||
SRCS_test-tal+= test-tal.c tal.c ip.c io.c log.c validate.c \
|
||||
encoding.c print.c crl.c dummy.c x509.c
|
||||
encoding.c print.c crl.c dummy.c x509.c json.c
|
||||
run-regress-test-tal: test-tal
|
||||
./test-tal -v ${.CURDIR}/../tal/*.tal
|
||||
|
||||
SRCS_test-aspa+= test-aspa.c aspa.c cms.c x509.c ip.c as.c io.c log.c \
|
||||
encoding.c print.c validate.c cert.c crl.c mft.c repo-dummy.c
|
||||
encoding.c print.c validate.c cert.c crl.c mft.c repo-dummy.c \
|
||||
json.c
|
||||
run-regress-test-aspa: test-aspa
|
||||
./test-aspa -v ${.CURDIR}/../aspa/*.asa
|
||||
|
||||
SRCS_test-tak+= test-tak.c tak.c cms.c x509.c ip.c as.c io.c log.c \
|
||||
encoding.c print.c validate.c cert.c crl.c mft.c
|
||||
encoding.c print.c validate.c cert.c crl.c mft.c json.c
|
||||
run-regress-test-tak: test-tak
|
||||
./test-tak -v ${.CURDIR}/../tak/*.tak
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user