all: ogive

ice:
	g++ -bundle  -bind \
		-I$(ISSM_TIER)/externalpackages/boost/install/include \
		-I/usr/include/python2.6/ \
		-L$(ISSM_TIER)/externalpackages/boost/install/lib -lboost_python \
		-L/usr/lib/python2.6/config/ -lpython2.6 \
		hellomodule.cpp -o hello.so

ogive:
	g++ \
		-I$(ISSM_TIER)/externalpackages/boost/install/include \
		-I/usr/include/python2.5/ \
		-L$(ISSM_TIER)/externalpackages/boost/install/lib -lboost_python \
		-L/usr/lib/python2.5/config/ -lpython2.5 \
		hellomodule.cpp -o hello.so -bundle

clean:
	rm hello.so
