1# Copyright (C) 2012 The SBCELT Developers. All rights reserved.
2# Use of this source code is governed by a BSD-style license
3# that can be found in the LICENSE-file.
4
5ifeq ($(shell uname -s),Darwin)
6 CC = clang
7else
8 CC = gcc
9endif
10LD = $(CC)
11AR = ar
12
13ifeq ($(shell uname -s),FreeBSD)
14 MAKE = gmake
15else
16 MAKE = make
17endif
18
19DEBUG=0
20PREFIX=1
21