forked from bonsai/harakit
Makefile: add sleep(1)
This commit is contained in:
parent
127192185f
commit
e674027b3e
7
Makefile
7
Makefile
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user