summaryrefslogtreecommitdiff
path: root/mk/os.mk
blob: 31d5dd78950f8c955d299d51719ab4b874db9724 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

# operating system quirks
ifeq (${OStype},Darwin)
HOST_CC:=clang -fbracket-depth=1024
HOST_CXX:=clang++ -fbracket-depth=1024
else
ifeq (${OStype},FreeBSD)
HOST_CC:=clang -fbracket-depth=1024
HOST_CXX:=clang++ -fbracket-depth=1024
else
HOST_CC:=${CC}
HOST_CXX:=${CXX}
endif
endif