summaryrefslogtreecommitdiff
path: root/contrib/SDL-3.2.8/src/hidapi/libusb/Makefile-manual
blob: 0acf707a4d932b56940d384b635c757c40651205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
OS=$(shell uname)

ifeq ($(OS), Linux)
	FILE=Makefile.linux
endif

ifeq ($(OS), FreeBSD)
	FILE=Makefile.freebsd
endif

ifeq ($(OS), Haiku)
	FILE=Makefile.haiku
endif

ifeq ($(FILE), )
all:
	$(error Your platform ${OS} is not supported by hidapi/libusb at this time.)
endif

include $(FILE)