From 638ad1a643355c7b89f89662639862ddbb8cdf5b Mon Sep 17 00:00:00 2001 From: christos Date: Sun, 1 Mar 2020 20:19:54 +0000 Subject: [PATCH] fix build by adding a Makefile.inc that chains up. --- tests/dev/usb/Makefile.inc | 2 ++ tests/dev/usb/t_hid/Makefile | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 tests/dev/usb/Makefile.inc diff --git a/tests/dev/usb/Makefile.inc b/tests/dev/usb/Makefile.inc new file mode 100644 index 000000000000..5f837ae2bd34 --- /dev/null +++ b/tests/dev/usb/Makefile.inc @@ -0,0 +1,2 @@ +# $NetBSD: Makefile.inc,v 1.1 2020/03/01 20:19:54 christos Exp $ +.include "../Makefile.inc" diff --git a/tests/dev/usb/t_hid/Makefile b/tests/dev/usb/t_hid/Makefile index 812b5168f1cc..6f7894bbd4d5 100644 --- a/tests/dev/usb/t_hid/Makefile +++ b/tests/dev/usb/t_hid/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2020/03/01 18:08:13 christos Exp $ +# $NetBSD: Makefile,v 1.5 2020/03/01 20:19:54 christos Exp $ # NOMAN= @@ -18,8 +18,8 @@ LIBHIDDIR!= cd ${.CURDIR}/../libhid && ${PRINTOBJDIR} LDFLAGS+= -L${LIBHIDDIR} LDADD+= -Wl,--whole-archive -lrumpdev_hid -Wl,--no-whole-archive DPADD+= ${LIBHIDDIR}/librumpdev_hid.a -DPADD+= ${ATF_C} +DPADD+= ${ATF_C} -LDADD+= -latf-c ${LIBRUMPBASE} +LDADD+= ${LIBRUMPBASE} -latf-c .include