mirror of
https://github.com/opnsense/src.git
synced 2026-03-09 09:41:05 -04:00
Sourceforge. Libusb 1.0 is a portable usb api released December 2008 and supersedes the original libusb released 10 years ago, it supports isochronous endpoints and asynchronous I/O. Many applications have already started using the interfaces. This has been developed as part of Google Summer of Code this year by Sylvestre Gallon and has been cribbed early due to it being desirable in FreeBSD 8.0 Submitted by: Sylvestre Gallon Sponsored by: Google Summer of Code 2009 Reviewed by: Hans Petter Selasky
32 lines
482 B
Makefile
32 lines
482 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
# Makefile for the FreeBSD specific LibUSB 2.0
|
|
#
|
|
|
|
LIB= usb
|
|
SHLIB_MAJOR= 1
|
|
SHLIB_MINOR= 0
|
|
SRCS= libusb20.c
|
|
SRCS+= libusb20_desc.c
|
|
SRCS+= libusb20_ugen20.c
|
|
INCS+= libusb20.h
|
|
INCS+= libusb20_desc.h
|
|
MAN= libusb.3 libusb20.3
|
|
MKLINT= no
|
|
NOGCCERROR=
|
|
|
|
MLINKS+= libusb.3 usb.3
|
|
|
|
# libusb 0.1 compat
|
|
INCS+= usb.h
|
|
SRCS+= libusb20_compat01.c
|
|
|
|
# libusb 1.0 compat
|
|
INCS+= libusb.h
|
|
SRCS+= libusb10.c
|
|
SRCS+= libusb10_desc.c
|
|
SRCS+= libusb10_io.c
|
|
|
|
.include <bsd.lib.mk>
|
|
|