Bugfix in search_for_outside_edge routine.
[voro++.git] / trunk / examples / no_release / Makefile
blob55183358c5b5aa4bcca3f7d3eeecb82797ef4471
1 # Voro++ makefile
3 # Author : Chris H. Rycroft (LBL / UC Berkeley)
4 # Email : chr@alum.mit.edu
5 # Date : August 30th 2011
7 # Load the common configuration file
8 include ../../config.mk
10 # List of executables
11 EXECUTABLES=rad_test finite_sys cylinder_inv single_cell_2d period sphere_mesh lloyd_box import_rahman import_nguyen polycrystal_rahman random_points_10 random_points_200 import_freeman voro_lf split_cell ghost_test neigh_test tri_mesh sphere r_pts_interface minkowski
13 # Makefile rules
14 all: $(EXECUTABLES)
16 %: %.cc
17 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o $@ $< -lvoro++
19 clean:
20 rm -f $(EXECUTABLES)
22 .PHONY: all clean