summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorChristoph Rüßler <christoph.ruessler@mailbox.org>2020-10-10 17:52:11 +0200
committerStephan Dilly <dilly.stephan@gmail.com>2020-10-10 23:31:40 +0200
commit04bd45e6418db891873962fc700c297973bd8c4e (patch)
tree2bb92e0a2d03835a32562d037747d6646be99a15 /Makefile
parentea8b32d6239dd438ed8976abdc42d68de3f7a4eb (diff)
Use helper binary for clipboard access (#262)
Use `clip` on Windows, `pbcopy` on MacOX, `xclip` on Linux. - Remove dependency on `clipboard` - Remove feature `clipboard`
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 736d5084..3bb825f4 100644
--- a/Makefile
+++ b/Makefile
@@ -26,13 +26,13 @@ release-linux-musl: build-linux-musl-release
tar -C ./target/x86_64-unknown-linux-musl/release/ -czvf ./release/gitui-linux-musl.tar.gz ./gitui
build-linux-musl-debug:
- cargo build --target=x86_64-unknown-linux-musl --no-default-features
+ cargo build --target=x86_64-unknown-linux-musl
build-linux-musl-release:
- cargo build --release --target=x86_64-unknown-linux-musl --no-default-features
+ cargo build --release --target=x86_64-unknown-linux-musl
test-linux-musl:
- cargo test --workspace --target=x86_64-unknown-linux-musl --no-default-features
+ cargo test --workspace --target=x86_64-unknown-linux-musl
test:
cargo test --workspace