Bugfix in search_for_outside_edge routine.
[voro++.git] / trunk / zeo / Makefile
blobcffb935d59bc4319c8790a4eaf5f0e833a00f8b5
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=network images cp_test
13 # Makefile rules
14 all: $(EXECUTABLES)
16 # List of the common source files
17 objs=v_network.o
18 src=$(patsubst %.o,%.cc,$(objs))
20 %.o: %.cc
21 $(CXX) $(CFLAGS) -I../src -c $<
23 network: network.cc v_network.o v_network.hh r_table.cc
24 $(CXX) $(CFLAGS) -I../src -L../src -o network network.cc v_network.o -lvoro++
26 images: images.cc
27 $(CXX) $(CFLAGS) -I../src -L../src -o images images.cc -lvoro++
29 cp_test: cp_test.cc
30 $(CXX) $(CFLAGS) -I../src -L../src -o cp_test cp_test.cc -lvoro++
32 clean:
33 rm -f $(EXECUTABLES)
35 .PHONY: all clean