From 365bdd714461a87a70080aa4f32b7a02726ee27a Mon Sep 17 00:00:00 2001 From: AKP Date: Sat, 4 Jun 2022 20:43:09 +0100 Subject: [PATCH] Ensure install target always gives binary the correct name Signed-off-by: AKP --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7368cd9..e72e527 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ clean: install: bin/cdmbar mkdir -p $(install_dir) - cp bin/cdmbar $(install_dir) + cp bin/cdmbar $(install_dir)/cdmbar uninstall: rm $(install_dir)/cdmbar