You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
260 B
18 lines
260 B
4 years ago
|
.PHONY: _pre_build debug release run clean
|
||
|
|
||
|
CARGO=./scripts/cargo_musl.sh
|
||
|
|
||
|
clean:
|
||
|
${CARGO} clean
|
||
|
|
||
|
_pre_build:
|
||
|
docker build -t unki/musllibs ./muslrust
|
||
|
|
||
|
debug: _pre_build
|
||
|
${CARGO} build
|
||
|
|
||
|
release: _pre_build
|
||
|
${CARGO} build --release
|
||
|
|
||
|
run: build
|
||
|
${CARGO} run
|