scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit c621b4a6eb46c57e32743b6ac6e26c9de253eccf
parent 830384d068b500a18a6aeb7a5a45e70bfad72d51
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 16 Feb 2017 21:06:38 +0100

[libc] Add all target to the Makefile

Diffstat:
Mlibc/src/Makefile | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/libc/src/Makefile b/libc/src/Makefile @@ -3,6 +3,8 @@ LIBCOBJ = assert.o strcpy.o strcmp.o +all: libc.a + libc.a: $(LIBCOJB) ar $(ARFLAGS) $@ $? ranlib $@