all:
	g++ -I../../ -c test.cpp
	g++ -shared -fPIC -o test.so test.o

clean:
	rm -f *.o
	rm -f test.so

