Commit f8f7df5e authored by Lucas Russo's avatar Lucas Russo

src/*/liberrhand/Makefile: fix dynamic library generation

parent 5655ac03
......@@ -15,6 +15,12 @@ PWD = $(shell pwd)
LIBERRHAND = liberrhand
# Config variables suitable for creating shared libraries
LIB_VER_MAJOR = 1
LIB_VER_MINOR = 0
LIB_VER_REVISION = 0
LIB_VER = $(LIB_VER_MAJOR).$(LIB_VER_MINOR).$(LIB_VER_REVISION)
INSTALL_DIR ?= /usr/local
export INSTALL_DIR
......@@ -168,5 +174,5 @@ clean:
rm -f $(OBJS_all) $(OBJS_all:.o=.d)
mrproper: clean
rm -f *.a
rm -f *.a *.so.$(LIB_VER)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment