update installation README, Makefile changes
All checks were successful
Rust / build-gnu-apt (pull_request) Successful in 4m14s
Rust / build-size-gnu-unstable (pull_request) Successful in 1m12s

This commit is contained in:
Vinzenz Schroeter 2025-05-04 13:51:54 +02:00
parent 2dd1250bf1
commit b06241f8d3
3 changed files with 30 additions and 26 deletions

View file

@ -101,7 +101,7 @@ clean-rust:
$(_unstripped_bins): out/%_unstripped: src/%.c $(SERVICEPOINT_HEADER_OUT)/servicepoint.h $(_sp_artifacts)
mkdir -p out || true
${CC} $< \
$(CC) $< \
-I $(SERVICEPOINT_HEADER_OUT) \
-L $(RUST_TARGET_DIR) \
$(CCFLAGS) \
@ -113,7 +113,7 @@ $(_bins): out/%: out/%_unstripped
$(_sp_artifacts): $(_rs_src)
mkdir -p $(SERVICEPOINT_HEADER_OUT) || true
# generate servicepoint header and library to link against
${CARGO} rustc $(CARGOFLAGS) -- $(RUSTFLAGS)
$(CARGO) rustc $(CARGOFLAGS) -- $(RUSTFLAGS)
$(_run_programs): run_%: out/% FORCE
./$<