all: test.la test.la.so

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

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

clean:
	rm -f test.la test.la.so

.PHONY: all clean