aboutsummaryrefslogtreecommitdiffstats
path: root/mk/os.mk
blob: f3426e48c18af5153d4e48379e2214673aceedf4 (plain)
1
2
3
4
5
6
7
# Setup OS specific variables
# Copyright 2008 Roy Marples <roy@marples.name>

_OS_SH=	case `uname -s` in Linux) echo "Linux";; Darwin) echo "Darwin";;  *) echo "BSD";; esac
_OS!=		${_OS_SH}
OS=		${_OS}$(shell ${_OS_SH})
include ${MK}/os-${OS}.mk