summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCoues Ludovic <couesl@gmail.com>2014-07-10 23:15:00 +0200
committerCoues Ludovic <couesl@gmail.com>2014-07-10 23:15:00 +0200
commita14f87bd23c5e5e4668f98c98ea6b6c143497887 (patch)
tree702df216172c1c9f30576b673e909a695cf27ace
parent1e6cfd178fc302e5dd269444063745dd7b7a66c0 (diff)
downloadmicronucleus-a14f87bd23c5e5e4668f98c98ea6b6c143497887.tar.gz
micronucleus-a14f87bd23c5e5e4668f98c98ea6b6c143497887.tar.bz2
micronucleus-a14f87bd23c5e5e4668f98c98ea6b6c143497887.zip
Support OpenBSD
-rw-r--r--commandline/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/commandline/Makefile b/commandline/Makefile
index 3c52cb4..e8aadfd 100644
--- a/commandline/Makefile
+++ b/commandline/Makefile
@@ -20,6 +20,11 @@ else ifeq ($(shell uname), Darwin)
# USBLIBS += -framework IOKit
# Uncomment these to create a dual architecture binary:
# OSFLAG += -arch x86_64 -arch i386
+else ifeq ($(shell uname), OpenBSD)
+ USBFLAGS=$(shell libusb-config --cflags || libusb-legacy-config --cflags)
+ USBLIBS=$(shell libusb-config --libs || libusb-legacy-config --libs)
+ EXE_SUFFIX =
+ OSFLAG = -D OPENBSD
else
USBFLAGS = -I C:\MinGW\include
USBLIBS = -L C:\MinGW\lib -lusb