so: Example.o
	g++ -shared -ldl -o Example.so $^

Example.o:	Example.cpp Example.h
	g++ -Wall -g -c -fPIC $<

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