Bugfix in search_for_outside_edge routine.
[voro++.git] / branches / exact / config.mk
blob3ac3a93fb72c5b1ba7b29ded0fe3c46868ac57ae
1 # Voro++, a 3D cell-based Voronoi library
3 # Author : Chris H. Rycroft (LBL / UC Berkeley)
4 # Email : chr@alum.mit.edu
5 # Date : August 28th 2011
7 # This a common configuration file that includes definitions used by all
8 # the Makefiles.
10 # C++ compiler
11 CXX=g++
13 # Flags for the C++ compiler
14 CFLAGS=-Wall -ansi -pedantic -O3 -I/opt/local/include -L/opt/local/lib
16 # Relative include and library paths for compilation of the examples
17 E_INC=-I../../src
18 E_LIB=-L../../src -lgmpxx -lgmp
20 # Installation directory
21 PREFIX=/usr/local
23 # Install command
24 INSTALL=install
26 # Flags for install command for executable
27 IFLAGS_EXEC=-m 0755
29 # Flags for install command for non-executable files
30 IFLAGS=-m 0644