From 59427625144c81009ef440bdcaeeec235c2b7ea4 Mon Sep 17 00:00:00 2001 From: Erik Westrup Date: Sat, 5 Feb 2022 15:48:58 +0100 Subject: [PATCH] Correct build source depdendency --- Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 2b39531..29817b8 100644 --- a/Makefile +++ b/Makefile @@ -100,15 +100,14 @@ uninstall: # target: install - Install all files install: install-scripts install-conf install-systemd -# Install targets - add build sources to prereq as well, -# so that build dir is re-created if deleted (expected behaviour). -# +# Install targets. Prereq build sources as well, +# so that build dir is re-created if deleted. # target: install-scripts - Install executables. -install-scripts: $(DEST_TARGS_SCRIPT) $(BUILD_SRCS_CONF) +install-scripts: $(DEST_TARGS_SCRIPT) $(BUILD_SRCS_SCRIPT) # target: install-conf - Install restic configuration files. install-conf: $(DEST_TARGS_CONF) $(BUILD_SRCS_CONF) # target: install-systemd - Install systemd timer and service files. -install-systemd: $(DEST_TARGS_SYSTEMD) $(BUILD_SRCS_CONF) +install-systemd: $(DEST_TARGS_SYSTEMD) $(BUILD_SRCS_SYSTEMD) # Copies sources to build directory & replace "$INSTALL_PREFIX" $(BUILD_DIR)/% : %