fix: not using NAME for install and install-strip prerequisites

This commit is contained in:
2026-01-25 09:40:14 +01:00
parent ae2989b5eb
commit 455072f0e7

View File

@@ -64,12 +64,12 @@ all: bin/$(NAME) bin/stripped_$(NAME)
# Install a binary on a POSIX-compliant system.
.PHONY:
install: bin/mcaselector-lite
install: bin/$(NAME)
install -m0755 bin/$(NAME) $(DESTDIR)/bin/$(NAME)
# Install a stripped binary on a POSIX-compliant system
.PHONY:
install-strip: bin/mcaselector-lite.stripped
install-strip: bin/$(NAME).stripped
install -m0755 bin/stripped_$(NAME) $(DESTDIR)/bin/$(NAME)
.PHONY: