From 09ffba0822b2636d7d9882d954884cee8c1480c3 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Sat, 15 Jan 2022 07:53:35 -0600 Subject: [PATCH] Rename install OUT according to #459 --- Makefile | 2 +- Makefile.guix | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 14b2c08..529c4d7 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ debug-strip: pgo-static: static debug-strip install: - install -m 0755 bin/sambamba $(prefix)/bin + install -m 0755 $(OUT) $(prefix)/bin clean: clean-d rm -f profile.data diff --git a/Makefile.guix b/Makefile.guix index 878f98c..15a1061 100644 --- a/Makefile.guix +++ b/Makefile.guix @@ -91,13 +91,13 @@ biod: check: all debug test debug-strip: debug - objcopy --only-keep-debug bin/sambamba sambamba.debug - objcopy --strip-debug bin/sambamba - objcopy --add-gnu-debuglink=sambamba.debug bin/sambamba + objcopy --only-keep-debug $(OUT) sambamba.debug + objcopy --strip-debug $(OUT) + objcopy --add-gnu-debuglink=sambamba.debug $(OUT) mv sambamba.debug bin/ install: - install -m 0755 bin/sambamba $(prefix)/bin + install -m 0755 $(OUT) $(prefix)/bin clean-c: