Strip extra spaces from code.
[voro++.git] / branches / 2d / examples / extra / Makefile
blobb79d0816ec4332b6254adea1671e2093dec9ce0b
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=intersect lloyd
13 # Makefile rules
14 all: $(EXECUTABLES)
16 intersect: $(SOURCE) intersect.cc
17 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o intersect intersect.cc -lvoro++_2d
19 lloyd: lloyd.cc
20 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o lloyd lloyd.cc -lvoro++_2d
22 clean:
23 rm -f $(EXECUTABLES)
25 .PHONY: all clean