diff options
author | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-06-21 14:10:45 +0200 |
---|---|---|
committer | kamel5 <vdr.kamel5 (at) gmx (dot) net> | 2019-06-21 14:10:45 +0200 |
commit | a685cbb131d5e62f30582fc8ab61a02b420512a8 (patch) | |
tree | b0c8a0eae1e79923d71c9b35ff38c919b3935972 /libskindesignerapi | |
parent | 751e903301844f10d37822b7eb1f5b28b94be68e (diff) | |
download | vdr-plugin-skindesigner-a685cbb131d5e62f30582fc8ab61a02b420512a8.tar.gz vdr-plugin-skindesigner-a685cbb131d5e62f30582fc8ab61a02b420512a8.tar.bz2 |
Version 1.2.81.2.8
Diffstat (limited to 'libskindesignerapi')
-rw-r--r-- | libskindesignerapi/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libskindesignerapi/Makefile b/libskindesignerapi/Makefile index 5dd5d2c..6537c9b 100644 --- a/libskindesignerapi/Makefile +++ b/libskindesignerapi/Makefile @@ -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) ; \ |