LIB=	libbar.so
OBJS=	bar.o

all:	libbar.so

clean:
	rm -f ${OBJS} ${LIB}

${LIB}:	${OBJS}
	${CXX} -shared -o $@ $<
