Strip extra spaces from code.
[voro++.git] / trunk / examples / walls / Makefile
blob569605fd7ada03f57bbc01c2c97d1eb8ef3b857b
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=cylinder tetrahedron frustum torus
13 # Makefile rules
14 all: $(EXECUTABLES)
16 cylinder: cylinder.cc
17 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o cylinder cylinder.cc -lvoro++
19 tetrahedron: tetrahedron.cc
20 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o tetrahedron tetrahedron.cc -lvoro++
22 frustum: frustum.cc
23 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o frustum frustum.cc -lvoro++
25 torus: torus.cc
26 $(CXX) $(CFLAGS) $(E_INC) $(E_LIB) -o torus torus.cc -lvoro++
28 clean:
29 rm -f $(EXECUTABLES)
31 .PHONY: all clean