Files
archived-hidapi/windows/Makefile
2011-04-08 18:48:12 -04:00

15 lines
190 B
Makefile

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)