CC=gcc
LIB=-lm -L/home/alexis/local/lib -lvol -lstdc++
INCLUDE=-I/home/alexis/local/include

hello-vol : hello-vol.o
	$(CC) -o hello-vol hello-vol.o $(LIB)
hello-vol.o : hello-vol.cc
	$(CC) -c hello-vol.cc $(INCLUDE)

clean :
	rm -f hello-vol.o hello.vol hello.geom hello-vol
