commit c7de2f7e79a025d87a47e0835f57d8091752b27e
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Thu Feb 16 21:18:32 2017 +0100
Commit:     Roberto E. Vargas Caballero <[email protected]>
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
@@ -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 $@
 

Reply via email to