1
0
forked from bonsai/harakit

Makefile: add sleep(1)

This commit is contained in:
dtb 2024-03-21 20:40:19 -06:00
parent 127192185f
commit e674027b3e
Signed by untrusted user: trinity
GPG Key ID: 31FF85CCB6DC7641

View File

@ -103,6 +103,13 @@ scrut: build/bin/scrut
build/bin/scrut: src/scrut.c build build/bin/scrut: src/scrut.c build
$(CC) $(CFLAGS) -o $@ src/scrut.c $(CC) $(CFLAGS) -o $@ src/scrut.c
.PHONY: sleep
sleep: build/bin/sleep
build/bin/sleep: src/sleep.rs build
$(RUSTC) $(RUSTFLAGS)
--extern sysexits=build/o/libsysexits.rlib \
-o $@ src/sleep.rs
.PHONY: str .PHONY: str
str: build/bin/str str: build/bin/str
build/bin/str: src/str.c build build/bin/str: src/str.c build