k9core

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

commit 8f5a599f1870ebe30e583e179d1b0f2a6b540669
parent 7af638ed4000912b359d40155bebe7df31432c76
Author: aabacchus <ben@bvnf.space>
Date:   Sun, 22 Aug 2021 00:34:50 +0100

Makefile: fix object file paths

since all the source files are compiled into ./*.o, nouserland/*.o doesn't exist

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

diff --git a/src/Makefile b/src/Makefile @@ -22,7 +22,7 @@ compile: $(CC) -o bin/longname logname.o $(CC) -o bin/ls ls.o $(CC) -o bin/mkdir mkdir.o - $(CC) -o bin/mount nouserland/mount.o + $(CC) -o bin/mount mount.o $(CC) -o bin/mv mv.o $(CC) -o bin/nproc nproc.o $(CC) -o bin/pwd pwd.o @@ -34,7 +34,7 @@ compile: $(CC) -o bin/touch touch.o $(CC) -o bin/true true.o $(CC) -o bin/tty tty.o - $(CC) -o bin/umount nouserland/umount.o + $(CC) -o bin/umount umount.o $(CC) -o bin/unlink unlink.o $(CC) -o bin/wc wc.o $(CC) -o bin/whoami whoami.o