Makefile revision 201381
1#
2# $FreeBSD: head/lib/libusb/Makefile 201381 2010-01-02 09:58:07Z ed $
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
19WARNS?=		2
20
21MLINKS+=	libusb.3 usb.3
22
23# libusb 0.1 compat
24INCS+=		usb.h
25SRCS+=		libusb20_compat01.c
26
27# libusb 1.0 compat
28INCS+=		libusb.h
29SRCS+=		libusb10.c
30SRCS+=		libusb10_desc.c
31SRCS+=		libusb10_io.c
32
33.include <bsd.lib.mk>
34
35