From 14c19c398b9f27196ac20daed6073a8bdf423352 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Wed, 22 Sep 2021 12:13:50 -1000 Subject: [PATCH] ;tools: make copy-exe*: name them -SUFF not .SUFF Breaks my usual convention of hledger-foo being an addon command, but -VERSION is too common (and matches the make target that you type). --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 9c7f1f641..2ff33d78d 100644 --- a/Makefile +++ b/Makefile @@ -414,11 +414,11 @@ ghci-doctest: $(call def-help,ghci-doctest, start ghci REPL on hledger-lib docte ghci-shake: $(call def-help,ghci-shake, start ghci REPL on Shake.hs) stack exec $(SHAKEDEPS) -- ghci Shake.hs -copy-exe-%: $(call def-help,copy-exe-VER, copy ~/.local/bin/hledger to hledger.VER) - cp ~/.local/bin/hledger{,.$*} +copy-exe-%: $(call def-help,copy-exe-VER, copy ~/.local/bin/hledger to hledger-VER) + cp ~/.local/bin/hledger{,-$*} -copy-exes-%: $(call def-help,copy-exes-VER, copy ~/.local/bin/hledger* to hledger*.VER) - for EXE in $(BINARIES); do cp ~/.local/bin/$$EXE{,.$*}; done +copy-exes-%: $(call def-help,copy-exes-VER, copy ~/.local/bin/hledger* to hledger*-VER) + for EXE in $(BINARIES); do cp ~/.local/bin/$$EXE{,-$*}; done # make must be GNU Make 4.3+ .PHONY: shellcompletions