hidapi-rusb 1.3.3

Rust-y wrapper around hidapi with rusb backend.
Documentation


OS=$(shell uname)

ifeq ($(OS), Linux)
	FILE=Makefile.linux
endif

ifeq ($(OS), FreeBSD)
	FILE=Makefile.freebsd
endif

ifeq ($(OS), Haiku)
	FILE=Makefile.haiku
endif

ifeq ($(FILE), )
all:
	$(error Your platform ${OS} is not supported by hidapi/libusb at this time.)
endif

include $(FILE)