Bugfix in search_for_outside_edge routine.
[voro++.git] / branches / 2d_boundary / examples / Makefile
bloba50d12028b077c446311f277f753920a3447beec
1 # Voro++ makefile
3 # Author : Chris H. Rycroft (LBL / UC Berkeley)
4 # Email : chr@alum.mit.edu
5 # Date : May 18th 2011
7 # Load the common configuration file
8 include ../config.mk
10 # List of executables
11 EXECUTABLES= test_ctr test_import test_lloyd test_bdry simple_nonconvex
13 # Makefile rules
14 all: $(EXECUTABLES)
18 test_ctr: test_ctr.cc
19 $(CC) $(CFLAGS) $(E_INC) $(E_LIB) -o test_ctr test_ctr.cc -lvoro++_2d
21 test_bdry: test_bdry.cc
22 $(CC) $(CFLAGS) $(E_INC) $(E_LIB) -o test_bdry test_bdry.cc -lvoro++_2d
24 test_import: test_import.cc
25 $(CC) $(CFLAGS) $(E_INC) $(E_LIB) -o test_import test_import.cc -lvoro++_2d
27 test_lloyd: test_lloyd.cc
28 $(CC) $(CFLAGS) $(E_INC) $(E_LIB) -o test_lloyd test_lloyd.cc -lvoro++_2d
30 simple_nonconvex: simple_nonconvex.cc
31 $(CC) $(CFLAGS) $(E_INC) $(E_LIB) -o simple_nonconvex simple_nonconvex.cc -lvoro++_2d
33 clean:
34 rm -f $(EXECUTABLES)
36 .PHONY: all clean