ips/Makefile

23 lines
402 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/pkg6 artifacts/
cp target/release/pkg6repo artifacts/
cp target/release/pkg6depotd artifacts/
publish-all: publish.libips publish.userland publish.pkg6
publish.%: CRATE=$*
publish.%:
cd $(CRATE); cargo publish