From c1720462b5f9b8f4673f2e60c091ba43997aa8dd Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 16 Apr 2015 19:30:29 +0200 Subject: makefile: symlinks for .so file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index eedb726..9e75ef2 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ LIB_VERSION = ${LIB_MAJOR}.${LIB_MINOR} all: bus -bus: bin/bus bin/libbus.so.$(LIB_MAJOR) +bus: bin/bus bin/libbus.so.$(LIB_VERSION) bin/libbus.so.$(LIB_MAJOR) bin/libbus.so bin/bus: obj/cmdline-nofpic.o obj/bus-nofpic.o @echo CC -o $@ @@ -22,6 +22,16 @@ bin/libbus.so.${LIB_VERSION}: obj/bus-fpic.o @mkdir -p bin @${CC} ${FLAGS} -shared -Wl,-soname,libbus.so.${LIB_MAJOR} -o $@ $^ ${LDFLAGS} +bin/libbus.so.${LIB_MAJOR}: + @echo LN -s $@ + @mkdir -p bin + @ln -sf libbus.so.${LIB_VERSION} $@ + +bin/libbus.so: + @echo LN -s $@ + @mkdir -p bin + @ln -sf libbus.so.${LIB_VERSION} $@ + obj/%-nofpic.o: src/%.c src/*.h @echo CC -c $@ @mkdir -p obj -- cgit v1.2.3-70-g09d2