xref: /dflybsd-src/share/examples/libusb20/Makefile (revision c6ecc293ce8e93b8d4edaa12241e09350a4d3f55)
1# $FreeBSD: head/share/examples/libusb20/Makefile 257779 2013-11-07 07:22:51Z hselasky $
2
3TARGETS=	bulk control
4CFLAGS+=	-Wall
5
6all: ${TARGETS}
7
8bulk: bulk.o util.o
9	${CC} ${CFLAGS} -o ${.TARGET} ${.ALLSRC} -lusb
10
11control: control.o util.o
12	${CC} ${CFLAGS} -o ${.TARGET} ${.ALLSRC} -lusb
13
14clean:
15	rm -f ${TARGETS} *.o *~
16