diff options
| author | Coues Ludovic <couesl@gmail.com> | 2014-07-10 23:15:00 +0200 | 
|---|---|---|
| committer | Coues Ludovic <couesl@gmail.com> | 2014-07-10 23:15:00 +0200 | 
| commit | a14f87bd23c5e5e4668f98c98ea6b6c143497887 (patch) | |
| tree | 702df216172c1c9f30576b673e909a695cf27ace /commandline | |
| parent | 1e6cfd178fc302e5dd269444063745dd7b7a66c0 (diff) | |
| download | micronucleus-a14f87bd23c5e5e4668f98c98ea6b6c143497887.tar.gz micronucleus-a14f87bd23c5e5e4668f98c98ea6b6c143497887.tar.bz2 micronucleus-a14f87bd23c5e5e4668f98c98ea6b6c143497887.zip  | |
Support OpenBSD
Diffstat (limited to 'commandline')
| -rw-r--r-- | commandline/Makefile | 5 | 
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  | 
