diff options
Diffstat (limited to 'libusb/Makefile-manual')
-rw-r--r-- | libusb/Makefile-manual | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libusb/Makefile-manual b/libusb/Makefile-manual new file mode 100644 index 0000000..c0fe868 --- /dev/null +++ b/libusb/Makefile-manual @@ -0,0 +1,18 @@ + + +OS=$(shell uname) + +ifeq ($(OS), Linux) + FILE=Makefile.linux +endif + +ifeq ($(OS), FreeBSD) + FILE=Makefile.freebsd +endif + +ifeq ($(FILE), ) +all: + $(error Your platform ${OS} is not supported by hidapi/libusb at this time.) +endif + +include $(FILE) |