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