chore(dev): update makefile

This commit is contained in:
xfy
2024-09-14 15:59:45 +08:00
parent b072a63d52
commit 3d1d86fd2e

View File

@ -38,19 +38,19 @@ lint:
fix:
$(CARGO) fix --allow-dirty --all-features && $(CARGO) fmt
build-linux-musl: clean-release
linux-musl: clean-release
$(CROSS) build --release --target x86_64-unknown-linux-musl
build-linux-gnu: clean-release
linux-gnu: clean-release
$(CROSS) build --release --target x86_64-unknown-linux-gnu
build-windows-gnu: clean-release
windows-gnu: clean-release
$(CROSS) build --release --target x86_64-pc-windows-gnu
build-freebsd: clean-release
freebsd: clean-release
$(CROSS) build --release --target x86_64-unknown-freebsd
build-loongarch: clean-release
loongarch: clean-release
$(CROSS) build --release --target loongarch64-unknown-linux-gnu
.PHONY: all