mirror of
https://github.com/libsdl-org/SDL.git
synced 2026-01-22 12:50:44 +00:00
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)
|