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