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