Module Name: src Committed By: christos Date: Sun Mar 1 20:19:55 UTC 2020
Modified Files: src/tests/dev/usb/t_hid: Makefile Added Files: src/tests/dev/usb: Makefile.inc Log Message: fix build by adding a Makefile.inc that chains up. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/tests/dev/usb/Makefile.inc cvs rdiff -u -r1.4 -r1.5 src/tests/dev/usb/t_hid/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/dev/usb/t_hid/Makefile diff -u src/tests/dev/usb/t_hid/Makefile:1.4 src/tests/dev/usb/t_hid/Makefile:1.5 --- src/tests/dev/usb/t_hid/Makefile:1.4 Sun Mar 1 13:08:13 2020 +++ src/tests/dev/usb/t_hid/Makefile Sun Mar 1 15:19:54 2020 @@ -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 && $ 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 <bsd.prog.mk> Added files: Index: src/tests/dev/usb/Makefile.inc diff -u /dev/null src/tests/dev/usb/Makefile.inc:1.1 --- /dev/null Sun Mar 1 15:19:55 2020 +++ src/tests/dev/usb/Makefile.inc Sun Mar 1 15:19:54 2020 @@ -0,0 +1,2 @@ +# $NetBSD: Makefile.inc,v 1.1 2020/03/01 20:19:54 christos Exp $ +.include "../Makefile.inc"