Version 1.2.8

This commit is contained in:
kamel5
2019-06-21 14:10:45 +02:00
parent 751e903301
commit a685cbb131
4 changed files with 24 additions and 10 deletions

View File

@@ -32,7 +32,8 @@ OBJS = $(SRCS:.c=.o)
all: ${TARGET_LIB} ${LIBNAME}.pc
%.o: %.c
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $<
@echo CC $@
$(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $<
# Dependencies:
@@ -46,7 +47,8 @@ $(DEPFILE): Makefile
# The main lib
$(TARGET_LIB): $(OBJS)
$(CXX) ${LDFLAGS} -o $@ $^
@echo LD $@
$(Q)$(CXX) ${LDFLAGS} -o $@ $^
if [ -n "$(LCLBLD)" ] ; then \
ln -s $(TARGET_LIB) $(LIBNAME).so ; \
ln -s $(TARGET_LIB) $(SONAME) ; \