L-shape calculation added.
[voro++.git] / trunk / config.mk
blob4f74162a83a83b107a0126f69ac9b01d81e4b483
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
16 # Relative include and library paths for compilation of the examples
17 E_INC=-I../../src
18 E_LIB=-L../../src
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