ips/Makefile

21 lines
311 B
Makefile
Raw Normal View History

.PHONY: all release test clean publish-all
2021-04-25 21:05:28 -03:00
2021-04-26 19:13:53 -03:00
all: clean release
2021-04-25 21:05:28 -03:00
test:
cargo test
2021-04-26 19:13:53 -03:00
clean:
rm -rf target artifacts
2021-04-25 21:05:28 -03:00
release:
cargo build --release
2021-04-26 19:13:53 -03:00
mkdir -p artifacts
cp target/release/pkg6dev artifacts/
publish-all: publish.libips publish.pkg6dev
publish.%: CRATE=$*
publish.%:
cd $(CRATE); cargo publish