aboutsummaryrefslogtreecommitdiff
path: root/hidapi/libusb/Makefile-manual
diff options
context:
space:
mode:
Diffstat (limited to 'hidapi/libusb/Makefile-manual')
-rw-r--r--hidapi/libusb/Makefile-manual18
1 files changed, 18 insertions, 0 deletions
diff --git a/hidapi/libusb/Makefile-manual b/hidapi/libusb/Makefile-manual
new file mode 100644
index 0000000..c0fe868
--- /dev/null
+++ b/hidapi/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)