ips/Makefile
Till Wegmueller 3c4f75ab5c Fixing makefile targets,
Added Version to userland crate
2021-05-01 16:21:17 -03:00

21 lines
No EOL
311 B
Makefile

.PHONY: all release test clean publish-all
all: clean release
test:
cargo test
clean:
rm -rf target artifacts
release:
cargo build --release
mkdir -p artifacts
cp target/release/pkg6dev artifacts/
publish-all: publish.libips publish.pkg6dev
publish.%: CRATE=$*
publish.%:
cd $(CRATE); cargo publish