Makefile revision 195767
1#
2# $FreeBSD: head/lib/libusb/Makefile 195767 2009-07-19 17:25:24Z kensmith $
3#
4# Makefile for the FreeBSD specific LibUSB 2.0
5#
6
7LIB=		usb
8SHLIB_MAJOR=	2
9SHLIB_MINOR=	0
10SRCS=		libusb20.c
11SRCS+=		libusb20_desc.c
12SRCS+=		libusb20_ugen20.c
13INCS+=		libusb20.h
14INCS+=		libusb20_desc.h
15MAN=		libusb.3 libusb20.3
16MKLINT=		no
17NOGCCERROR=
18
19MLINKS+=	libusb.3 usb.3
20
21# libusb 0.1 compat
22INCS+=		usb.h
23SRCS+=		libusb20_compat01.c
24
25# libusb 1.0 compat
26INCS+=		libusb.h
27SRCS+=		libusb10.c
28SRCS+=		libusb10_desc.c
29SRCS+=		libusb10_io.c
30
31.include <bsd.lib.mk>
32
33