aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 6ff665ac828c11a1de4b3edd378cf0742dc5492a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.DEFAULT_GOAL := all
#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