diff --git a/Demos/DynamicLink/LinkLib/Makefile b/Demos/DynamicLink/LinkLib/Makefile index 80abed2882..c4550d9f61 100644 --- a/Demos/DynamicLink/LinkLib/Makefile +++ b/Demos/DynamicLink/LinkLib/Makefile @@ -4,12 +4,12 @@ DYNLIBRARY = libDynamicLib.so EXTRA_CLEAN = *.o *.so -.PHONY: clean all - all: $(DYNLIBRARY) DynamicLib.o: DynamicLib.cpp - $(CXX) -DDEBUG -fPIC -isystem../../../ -o $@ -c $< + @echo "$(notdir $(CURDIR)): C++ $@" + $(QUIET) $(CXX) -DDEBUG -fPIC -isystem../../../ -o $@ -c $< $(DYNLIBRARY): DynamicLib.o - $(CXX) -shared -o $(DYNLIBRARY) $< + @echo "$(notdir $(CURDIR)): DYLIB $@" + $(QUIET) $(CXX) -shared -o $(DYNLIBRARY) $<