eep(1) #103
4
Makefile
4
Makefile
@ -120,8 +120,8 @@ build/bin/scrut: src/scrut.c build
|
||||
|
||||
.PHONY: sleep
|
||||
sleep: build/bin/sleep
|
||||
build/bin/sleep: src/sleep.rs build
|
||||
$(RUSTC) $(RUSTFLAGS)
|
||||
build/bin/sleep: src/sleep.rs build rustlibs
|
||||
$(RUSTC) $(RUSTFLAGS) \
|
||||
--extern sysexits=build/o/libsysexits.rlib \
|
||||
trinity marked this conversation as resolved
|
||||
-o $@ src/sleep.rs
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user
This is unnecessary due to the merge-in of the main branch:
$(RUSTLIBS)
was introduced.This is now out-of-date;
$(RUSTLIBS)
has been removed in favor of appending to$(RUSTFLAGS)
.