Mac and Linux SDL2 binary snapshots
Edward Rudd
2019-04-09 9cd2e9ec8fc0127393dfce9c0359d500c8c238be
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 
 
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)