all: test test.so

test: libtest1.la
	cp libtest1.la test

include ../../make_libs

test.so: ../.libs/libtest1.so
	cp ../.libs/libtest1.so test.so

clean::
	rm -f test test.so

.PHONY: all clean
