aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 5f5154e1b5436c7f275828491ed5998294d93574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
test-integration:
	cargo build
	prove -v

test:
	cargo test

test-all: test test-integration

reinstall:
	cargo uninstall alias-auto-add
	cargo install

package:
	cargo build --release
	version=`cat Cargo.toml | grep version | awk '{ gsub("\"", ""); print $$3 }'`; \
		xz --compress --to-stdout ./target/release/alias-auto-add > alias-auto-add_$${version}_osx_amd64.xz