From 82f6c46b64a4ef270a995cbd7a0ecb81c6ea55b3 Mon Sep 17 00:00:00 2001 From: DTB Date: Fri, 3 May 2024 21:22:07 -0600 Subject: [PATCH] Makefile: update sleep recipe --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 70ab13c..09110e3 100644 --- a/Makefile +++ b/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 \ -o $@ src/sleep.rs