Files
yuzu/externals/SDL/src/hidapi/libusb/Makefile-manual
2021-04-18 05:35:25 +02:00

19 lines
244 B
Plaintext
Executable File

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)