scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 5f4f7787a0f6b602aa66d8b43f98f184d824d922
parent 0ddc858d7d576967bf7596b445ef7f1b19bb7e3d
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Thu, 16 Feb 2017 16:01:25 +0100

[libc] Add basic Makefile for libc

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

diff --git a/libc/src/Makefile b/libc/src/Makefile @@ -0,0 +1,9 @@ + +LIBCOBJ = assert.o + +libc.a: $(LIBCOJB) + ar $(ARFLAGS) $@ $? + ranlib $@ + +clean: + rm -f *.o libc.a