diff --git a/libubb/Makefile b/libubb/Makefile index a4be822..8a42ad9 100644 --- a/libubb/Makefile +++ b/libubb/Makefile @@ -18,7 +18,6 @@ LD = $(TARGET)ld CFLAGS = -g -Wall -fPIC -Iinclude LIB = libubb.a SHLIB = libubb.so -LIBVERSION = 0.0.0 OBJS = ubb.o swuart.o mmcclk.o HDRS = ubb/ubb.h ubb/regbase.h ubb/regs4740.h ubb/swuart.h ubb/mmcclk.h @@ -28,7 +27,7 @@ HDRS = ubb/ubb.h ubb/regbase.h ubb/regs4740.h ubb/swuart.h ubb/mmcclk.h all: $(SHLIB) $(SHLIB): $(LIB) - $(LD) -shared -soname $@.$(LIBVERSION) -o $@ \ + $(LD) -shared -soname $@ -o $@ \ --whole-archive $^ || { rm -f $@; exit 1; } $(LIB): $(OBJS)