Bugfix in search_for_outside_edge routine.
[voro++.git] / trunk / examples / custom / Makefile
blobe2726e19b82bc451543c0c5087fee6dfe2ade472
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=cell_statistics custom_output radical
13 # Makefile rules
14 all: $(EXECUTABLES)
16 cell_statistics: cell_statistics.cc
17 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o cell_statistics cell_statistics.cc -lvoro++
19 custom_output: custom_output.cc
20 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o custom_output custom_output.cc -lvoro++
22 radical: radical.cc
23 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o radical radical.cc -lvoro++
25 clean:
26 rm -f $(EXECUTABLES)
28 .PHONY: all clean