mirror of
https://github.com/RPCS3/hidapi.git
synced 2024-11-23 10:09:43 +00:00
38a7bf75f0
Files named Makefile which will conflict with autotools have been renamed to Makefile-manual.
15 lines
190 B
Plaintext
15 lines
190 B
Plaintext
|
|
|
|
OS=$(shell uname)
|
|
|
|
ifneq (,$(findstring MINGW,$(OS)))
|
|
FILE=Makefile.mingw
|
|
endif
|
|
|
|
ifeq ($(FILE), )
|
|
all:
|
|
$(error Your platform ${OS} is not supported at this time.)
|
|
endif
|
|
|
|
include $(FILE)
|