Move the stand/usb test loader into its own directory.

Fix its Makefile to build correctly.

MFC after:	1 week
Sponsored by:	Mellanox Technologies
This commit is contained in:
hselasky 2018-02-07 19:20:59 +00:00
parent a9ddb1ed12
commit 7a8769b3af
2 changed files with 9 additions and 5 deletions

View File

@ -30,6 +30,7 @@
#
.PATH: ${.CURDIR}
.SUFFIXES: .a
PROG= usbloader
SRCS=
@ -45,12 +46,15 @@ LDFLAGS+= -Wl,--gc-sections
SRCS+= bsd_usbloader_test.c
LDADD+= libusbboot.a
DPADD+= libusbboot.a
USBLIB?= ${.OBJDIR}/../libusbboot.a
LDADD+= ${USBLIB}
DPADD+= ${USBLIB}
MAN=
.include <bsd.prog.mk>
${PROG}: libusbboot.a
${USBLIB}:
make -C ${.CURDIR}/.. USBCOREDIR=${.CURDIR}/..
libusbboot.a:
make -f Makefile