3 # Author : Chris H. Rycroft (LBL / UC Berkeley)
4 # Email : chr@alum.mit.edu
7 # Load the common configuration file
8 include ..
/..
/config.mk
10 # The relative of path of the main library source files
13 # List of the common source files
14 SOURCE
=..
/..
/src
/container.
cc ..
/..
/src
/container.hh ..
/..
/src
/config.hh \
15 ..
/..
/src
/cell.hh ..
/..
/src
/cell.
cc ..
/..
/src
/wall.
cc ..
/..
/src
/wall.hh \
16 ..
/..
/src
/worklist.
cc ..
/..
/src
/worklist.hh ..
/..
/src
/voro
++.
cc \
20 EXECUTABLES
=cylinder tetrahedron frustum
23 all: cylinder tetrahedron frustum
25 cylinder
: $(SOURCE
) cylinder.
cc
26 $(CC
) $(CFLAGS
) $(INCLUDE
) -o cylinder cylinder.
cc
28 tetrahedron
: $(SOURCE
) tetrahedron.
cc
29 $(CC
) $(CFLAGS
) $(INCLUDE
) -o tetrahedron tetrahedron.
cc
31 frustum
: $(SOURCE
) frustum.
cc
32 $(CC
) $(CFLAGS
) $(INCLUDE
) -o frustum frustum.
cc