summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWayne Davison <wayne@opencoder.net>2020-06-29 20:04:54 -0700
committerWayne Davison <wayne@opencoder.net>2020-06-29 20:04:54 -0700
commit646784f0e593162134aa88ab5a63f0f2236e5956 (patch)
tree6ccb6bdc976ac15d4908004ee033e263122cb525
parent18ed3f02795218f29c080bdb2956faba63e42f79 (diff)
downloadrsync-646784f0e593162134aa88ab5a63f0f2236e5956.tar.gz
Move the new target after "all".
-rw-r--r--packaging/auto-Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/auto-Makefile b/packaging/auto-Makefile
index 097a5d87..cc181536 100644
--- a/packaging/auto-Makefile
+++ b/packaging/auto-Makefile
@@ -3,9 +3,9 @@ TARGETS := all install install-ssl-daemon install-all install-strip conf gen gen
.PHONY: $(TARGETS) auto-prep
+$(TARGETS): auto-prep
+ make -C build $@
+
auto-prep:
@if test x`packaging/prep-auto-dir` = x; then echo "auto-build-save is not setup"; exit 1; fi
@echo 'Build branch: '`readlink build/.branch | tr % /`
-
-$(TARGETS): auto-prep
- make -C build $@