sleep(1): rename to eep(1)

This commit is contained in:
Emma Tebibyte 2024-05-29 19:37:18 -06:00
parent ba55c4c8e7
commit fe5c020590
Signed by: emma
GPG Key ID: 06FA419A1698C270
2 changed files with 5 additions and 5 deletions

View File

@ -28,7 +28,7 @@ RUSTLIBS = --extern getopt=build/o/libgetopt.rlib \
CFLAGS += -I$(SYSEXITS)
.PHONY: all
all: dj false fop hru intcmp mm npc rpn scrut sleep str strcmp swab true
all: dj eep false fop hru intcmp mm npc rpn scrut str strcmp swab true
build:
# keep build/include until bindgen(1) has stdin support
@ -118,12 +118,12 @@ scrut: build/bin/scrut
build/bin/scrut: src/scrut.c build
$(CC) $(CFLAGS) -o $@ src/scrut.c
.PHONY: sleep
sleep: build/bin/sleep
build/bin/sleep: src/sleep.rs build rustlibs
.PHONY: eep
eep: build/bin/eep
build/bin/eep: src/eep.rs build rustlibs
$(RUSTC) $(RUSTFLAGS) \
--extern sysexits=build/o/libsysexits.rlib \
-o $@ src/sleep.rs
-o $@ src/eep.rs
.PHONY: str
str: build/bin/str