DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit 78988eeeb0ae7a9580794d400c41d7604b12691b
parent 30148919105af831c2ab6ef0eec580757acef8ca
Author: Patrick Desaulniers <desaulniers.patrick@carrefour.cegepvicto.ca>
Date:   Mon,  1 Oct 2018 19:55:11 -0400

Tweak mkdir call
Diffstat:
MMakefile.plugins.mk | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile.plugins.mk b/Makefile.plugins.mk @@ -77,12 +77,12 @@ all: # Common $(BUILD_DIR)/%.c.o: %.c - -@mkdir -p "$(BUILD_DIR)/$(shell dirname $<)" + -@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)" @echo "Compiling $<" @$(CC) $< $(BUILD_C_FLAGS) -c -o $@ $(BUILD_DIR)/%.cpp.o: %.cpp - -@mkdir -p "$(BUILD_DIR)/$(shell dirname $<)" + -@mkdir -p "$(shell dirname $(BUILD_DIR)/$<)" @echo "Compiling $<" @$(CXX) $< $(BUILD_CXX_FLAGS) -c -o $@