k9core

Coreutils for *nix operating systems
git clone git://bvnf.space/k9core.git
Log | Files | Refs | LICENSE

commit b601d2328b5807e516089fd6bda542774108319a
parent c3b8faa561d93a4183ba420889d501a51cf48f50
Author: aabacchus <ben@bvnf.space>
Date:   Mon, 13 Sep 2021 17:33:19 +0100

Makefile: typos

Diffstat:
Msrc/Makefile | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/Makefile b/src/Makefile @@ -21,7 +21,7 @@ compile: $(CC) -o bin/id id.o $(CC) -o bin/kill kill.o $(CC) -o bin/ln ln.o - $(CC) -o bin/longname logname.o + $(CC) -o bin/logname logname.o $(CC) -o bin/ls ls.o $(CC) -o bin/mkdir mkdir.o $(CC) -o bin/mount mount.o @@ -48,6 +48,6 @@ clean: rm -fr bin/ install: mkdir -p $(DESTDIR)$(PREFIX)/k9core - cp bin/* /usr/local/k9core/ + cp bin/* $(DESTDIR)$(PREFIX)/k9core/ .PHONY: - clean objclean compile + clean compile