[hackers] [scc] [libc] Fix libc.a target || Roberto E. Vargas Caballero
commit c7de2f7e79a025d87a47e0835f57d8091752b27e
Author: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
AuthorDate: Thu Feb 16 21:18:32 2017 +0100
Commit: Roberto E. Vargas Caballero <k0ga_AT_shike2.com>
CommitDate: Thu Feb 16 21:18:32 2017 +0100
[libc] Fix libc.a target
The list of objects was wrong due to a typo
diff --git a/libc/src/Makefile b/libc/src/Makefile
index 613cd0b..22d2301 100644
--- a/libc/src/Makefile
+++ b/libc/src/Makefile
_AT_@ -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) $_AT_ $?
ranlib $_AT_
Received on Thu Feb 16 2017 - 21:24:56 CET
This archive was generated by hypermail 2.3.0
: Thu Feb 16 2017 - 21:36:47 CET