commit c7de2f7e79a025d87a47e0835f57d8091752b27e
parent 3f51e82f5bad60cd837488bd5e1a8badd3441835
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Thu, 16 Feb 2017 21:18:32 +0100
[libc] Fix libc.a target
The list of objects was wrong due to a typo
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libc/src/Makefile b/libc/src/Makefile
@@ -5,7 +5,7 @@ LIBCOBJ = assert.o strcpy.o strcmp.o strlen.o strchr.o
all: libc.a
-libc.a: $(LIBCOJB)
+libc.a: $(LIBCOBJ)
ar $(ARFLAGS) $@ $?
ranlib $@