summaryrefslogtreecommitdiff
path: root/usr/src/cmd/xhci/Makefile
diff options
context:
space:
mode:
authorRobert Mustacchi <rm@joyent.com>2016-03-28 04:43:35 +0000
committerRobert Mustacchi <rm@joyent.com>2016-12-09 00:17:55 +0000
commit1cb3ba547f23532c62f715007a21832205f7fdf7 (patch)
treea3891916372f655da53eb47142019aa2a3f6775a /usr/src/cmd/xhci/Makefile
parent83390469eaf76687ae434504ed3e41fdbe4ae3b6 (diff)
downloadillumos-joyent-1cb3ba547f23532c62f715007a21832205f7fdf7.tar.gz
OS-1151 need support for USB v3.0
OS-5778 want usb_pipe_xopen(9F) OS-5776 usbai burst macros for endpoint descriptor are wrong OS-5367 usba_hcdi_register() should fail if driver is using private data OS-5368 failing to load the usba root hub module destroys driver parent private data OS-5775 want ::hubd walker OS-5774 ::prtusb should include version OS-5777 usb_*_request(9S) manual pages should match structure names Reviewed by: Patrick Mooney <patrick.mooney@joyent.com> Reviewed by: Jerry Jelinek <jerry.jelinek@joyent.com> Reviewed by: Bryan Cantrill <bryan@joyent.com> Approved by: Dave Pacheco <dap@joyent.com>
Diffstat (limited to 'usr/src/cmd/xhci/Makefile')
-rw-r--r--usr/src/cmd/xhci/Makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/usr/src/cmd/xhci/Makefile b/usr/src/cmd/xhci/Makefile
new file mode 100644
index 0000000000..b0282ca5f9
--- /dev/null
+++ b/usr/src/cmd/xhci/Makefile
@@ -0,0 +1,43 @@
+#
+# This file and its contents are supplied under the terms of the
+# Common Development and Distribution License ("CDDL"), version 1.0.
+# You may only use this file in accordance with the terms of version
+# 1.0 of the CDDL.
+#
+# A full copy of the text of the CDDL should have accompanied this
+# source. A copy of the CDDL is also available via the Internet at
+# http://www.illumos.org/license/CDDL.
+#
+
+#
+# Copyright 2016 Joyent, Inc.
+#
+
+PROG= xhci_portsc
+
+ROOTLIBXHCI = $(ROOTLIB)/xhci
+ROOTLIBXHCIPROG = $(PROG:%=$(ROOTLIBXHCI)/%)
+
+include ../Makefile.cmd
+
+CFLAGS += $(CCVERBOSE)
+CPPFLAGS += -I$(SRC)/uts/common/
+LDLIBS += -ldevinfo
+
+.KEEP_STATE:
+
+all: $(PROG)
+
+install: all $(ROOTLIBXHCIPROG)
+
+clean:
+
+lint: lint_PROG
+
+$(ROOTLIBXHCI):
+ $(INS.dir)
+
+$(ROOTLIBXHCI)/%: % $(ROOTLIBXHCI)
+ $(INS.file)
+
+include ../Makefile.targ