all: ice

ice:
	g++ -bundle  -bind \
		-I$(ISSM_TIER)/externalpackages/boost/install/include \
		-I/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m\
		-L$(ISSM_TIER)/externalpackages/boost/install/lib -lboost_python \
		-L/Library/Frameworks/Python.framework/Versions/3.2/lib/python3.2/config-3.2m/ -lpython3.2 \
		hellomodule.cpp -o hello.so



clean:
	rm hello.so
