~verifydtapn-contributers/verifydtapn/d3.4

« back to all changes in this revision

Viewing changes to makefile.osx32

  • Committer: Jiri Srba
  • Date: 2020-09-09 17:52:56 UTC
  • mfrom: (338.1.41 cmake)
  • Revision ID: srba@cs.aau.dk-20200909175256-6y90y7whhki3t4u2
merged in lp:~verifydtapn-contributers/verifydtapn/cmake that uses cmake, adds AF games, code cleanup 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# For bash on OS X, as /bin/sh is compiled with --enable-strict-posix-default
2
 
SHELL                   = /bin/bash
3
 
 
4
 
# Programs for processing
5
 
LEX                             = flex 
6
 
YACC                            = bison 
7
 
CC                              = gcc
8
 
CUT                             = cut
9
 
 
10
 
# Compiler and linker flags
11
 
COMMONFLAGS             = -DBOOST_DISABLE_THREADS -DNDEBUG -DDISABLE_ASSERTX -O3 -Wall -mtune=core2 -mmacosx-version-min=10.9 -m32 -std=c++14
12
 
CFLAGS                  = $(COMMONFLAGS) -I. -I/usr/local/include -I/opt/local/include 
13
 
LDFLAGS                 = $(COMMONFLAGS) -lstdc++ 
14
 
 
15
 
# Input files
16
 
SOURCES                 = $(shell find * -name "*.cpp") 
17
 
OBJECTS                 = $(SOURCES:.cpp=.o)
18
 
TARGET                  = verifydtapn-osx32
19
 
 
20
 
include rules.mk