]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libusb/Makefile
Update to BIND 9.6.3, the latest from ISC on the 9.6 branch.
[FreeBSD/FreeBSD.git] / lib / libusb / Makefile
1 #
2 # $FreeBSD$
3 #
4 # Makefile for the FreeBSD specific LibUSB 2.0
5 #
6
7 LIB=            usb
8 SHLIB_MAJOR=    2
9 SHLIB_MINOR=    0
10 SRCS=           libusb20.c
11 SRCS+=          libusb20_desc.c
12 SRCS+=          libusb20_ugen20.c
13 INCS+=          libusb20.h
14 INCS+=          libusb20_desc.h
15 MAN=            libusb.3 libusb20.3
16 MKLINT=         no
17 NOGCCERROR=
18
19 WARNS?=         2
20
21 MLINKS+=        libusb.3 usb.3
22
23 # libusb 0.1 compat
24 INCS+=          usb.h
25 SRCS+=          libusb20_compat01.c
26
27 # libusb 1.0 compat
28 INCS+=          libusb.h
29 SRCS+=          libusb10.c
30 SRCS+=          libusb10_desc.c
31 SRCS+=          libusb10_io.c
32
33 .if defined(COMPAT_32BIT)
34 CFLAGS+=        -DCOMPAT_32BIT
35 .endif
36
37 .include <bsd.lib.mk>
38