Skip to content

Commit

Permalink
Rename install OUT according to #459
Browse files Browse the repository at this point in the history
  • Loading branch information
pjotrp committed Jan 15, 2022
1 parent 1621ed1 commit 09ffba0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions Makefile.guix
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down

0 comments on commit 09ffba0

Please sign in to comment.