shithub: cstory

ref: 44edb7d26e869009825d9074589fa2c512f57b51
dir: /external/SDL2/src/hidapi/testgui/Makefile-manual/

View raw version


OS=$(shell uname)

ifeq ($(OS), Darwin)
	FILE=Makefile.mac
endif

ifneq (,$(findstring MINGW,$(OS)))
	FILE=Makefile.mingw
endif

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

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

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

include $(FILE)