Add missing Makefile defines so that the program in question can be

built as part of buildworld.
This commit is contained in:
Hans Petter Selasky 2014-12-02 13:58:57 +00:00
parent 77a06f9db0
commit 76ebf59046
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=275407

View File

@ -30,11 +30,13 @@ SRCS+= usbtest.c
SRCS+= usb_msc_test.c
SRCS+= usb_modem_test.c
SRCS+= usb_control_ep_test.c
SYSDIR?= ${.CURDIR}/../../../sys
DPADD+= ${LIBUSB}
LDADD+= -lusb
WARNS= 3
CFLAGS+= -I ${.CURDIR}/../../../sys/dev/usb/gadget
CFLAGS+= -I${SYSDIR}/dev/usb/gadget
.include <bsd.prog.mk>