Bugfix in search_for_outside_edge routine.
[voro++.git] / branches / 2d / Makefile
blob701450e90ffee73d3128d9af02875c35be9254b8
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 $(MAKE) -C src
13 $(MAKE) -C boundary
14 $(MAKE) -C examples
16 # Build the help files (with doxygen)
17 help:
18 $(MAKE) -C src help
20 # Clean up the executable files
21 clean:
22 $(MAKE) -C src clean
23 $(MAKE) -C boundary clean
24 $(MAKE) -C examples clean