Make sure we create the installation directories

This commit is contained in:
Christophe de Dinechin 2017-03-28 02:41:40 +02:00
parent 48072b16fa
commit 1f376affa9
1 changed files with 3 additions and 3 deletions

View File

@ -165,11 +165,11 @@ product.runtest: product .ALWAYS
$(PRINT_TEST) $(OBJROOT_EXE) $(PRODUCTS_OPTS)
# Installing the product: always need to build it first
%.install_exe: $(PREFIX_BIN)
%.install_exe: $(PREFIX_BIN).mkdir
$(PRINT_INSTALL) $(INSTALL) $* $(PREFIX_BIN)
%.install_lib: $(PREFIX_LIB)
%.install_lib: $(PREFIX_LIB).mkdir
$(PRINT_INSTALL) $(INSTALL) $* $(PREFIX_LIB)
%.install_dll: $(PREFIX_DLL)
%.install_dll: $(PREFIX_DLL).mkdir
$(PRINT_INSTALL) $(INSTALL) $* $(PREFIX_DLL)
# Benchmarking (always done with profile target)