Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 190 Bytes

Makefile-manual

File metadata and controls

14 lines (9 loc) · 190 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)