Strip extra spaces from code.
[voro++.git] / branches / 2d_boundary / Makefile
blobb165053bc893a8f2a83699b51789ce9997701beb
1 # Voro++ makefile
3 # Author : Chris H. Rycroft (LBL / UC Berkeley)
4 # Email : chr@alum.mit.edu
5 # Date : May 18th 2011
7 # Tell make that these are phony targets
8 .PHONY: all help clean
10 # Build all of the executable files
11 all:
12 cd src && $(MAKE)
13 cd examples && $(MAKE)
15 # Build the help files (with doxygen)
16 help:
17 cd src && $(MAKE) help
19 # Clean up the executable files
20 clean:
21 cd src && $(MAKE) clean
22 cd examples && $(MAKE) clean