1
2
3OS=$(shell uname)
4
5ifneq (,$(findstring MINGW,$(OS)))
6	FILE=Makefile.mingw
7endif
8
9ifeq ($(FILE), )
10all:
11	$(error Your platform ${OS} is not supported at this time.)
12endif
13
14include $(FILE)
15