aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 62137a4b1218535fe7f3611af7ebebe7fa7f0490 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#Detect what kind of system we're on
ifeq ($(OS), Windows_NT)
	UNAME:=Windows
else
	UNAME:=$(shell uname -s)
endif
Q=@
ifeq ($(UNAME), Windows)
include Makefile.win
endif
ifeq ($(UNAME), Linux)
include Makefile.nix
endif