Strip extra spaces from code.
[voro++.git] / branches / 2d / boundary / Makefile
blob6f9932b136520bab35d1b1c97e4be5fd24a97bd7
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=voro++_bdry
13 # Makefile rules
14 all: $(EXECUTABLES)
16 voro++_bdry: voro++_bdry.cc
17 $(CXX) $(CFLAGS) -I../src -L../src -o voro++_bdry voro++_bdry.cc -lvoro++_2d
19 voro++_test1: voro++_test1.cc
20 $(CXX) $(CFLAGS) -I../src -L../src -o voro++_test1 voro++_test1.cc -lvoro++_2d
22 voro++_test2: voro++_test2.cc
23 $(CXX) $(CFLAGS) -I../src -L../src -o voro++_test2 voro++_test2.cc -lvoro++_2d
24 clean:
25 rm -f $(EXECUTABLES)
27 .PHONY: all clean