##   -*-Makefile-*-
## 
##  IMS Open Corpus Workbench (CWB)
##  Copyright (C) 1993-2006 by IMS, University of Stuttgart
##  Copyright (C) 2007-     by the respective contributers (see file AUTHORS)
## 
##  This program is free software; you can redistribute it and/or modify it
##  under the terms of the GNU General Public License as published by the
##  Free Software Foundation; either version 2, or (at your option) any later
##  version.
## 
##  This program is distributed in the hope that it will be useful, but
##  WITHOUT ANY WARRANTY; without even the implied warranty of
##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
##  Public License for more details (in the file "COPYING", or available via
##  WWW at http://www.gnu.org/copyleft/gpl.html).

##
##  PLATFORM CONFIGURATION FILE: 
##  Recent Mac OS X with Xcode 5 or later on 64-bit Intel Core2 and newer CPUs, natively tuned,
##  with prerequisite libraries installed by user or package manager in standard locations
##

## Inherits from basic Darwin configuration
include $(TOP)/config/platform/darwin

## Explicitly use Clang compiler (Apple's gcc is now just a symlink to Clang)
# CC = /usr/bin/clang

## Only build default 64-bit architecture, optimised for this system
CFLAGS = -Wall -O3 -arch arm64 -mtune=native

DEPEND_CFLAGS = -Wall -O3

## CPU architecture and operating system used to name binary releases
RELEASE_ARCH = x86_64
RELEASE_OS = osx-10.7

