all: test.so

test.so : ../.libs/libtest.so
	cp ../.libs/libtest.so test.so

clean:
	rm -f test.so

.PHONY: all clean