1# Voro++ makefile
2#
3# Author : Chris H. Rycroft (LBL / UC Berkeley)
4# Email  : chr@alum.mit.edu
5# Date   : August 30th 2011
6
7# Load the common configuration file
8include ../../config.mk
9
10# List of executables
11EXECUTABLES=cell_statistics custom_output radical
12
13# Makefile rules
14all: $(EXECUTABLES)
15
16cell_statistics: cell_statistics.cc
17	$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o cell_statistics cell_statistics.cc -lvoro++
18
19custom_output: custom_output.cc
20	$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o custom_output custom_output.cc -lvoro++
21
22radical: radical.cc
23	$(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o radical radical.cc -lvoro++
24
25clean:
26	rm -f $(EXECUTABLES)
27
28.PHONY: all clean
29