scc

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

commit fcde896a2c7aff772491c9d93b24093546cb7274
parent ff88105969daab157561e50d16fb763f08bd2e29
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed, 15 Jun 2016 17:48:10 +0200

[lib] Use ARFLAGS instead of using hardcodes one

Diffstat:
Mlib/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/Makefile b/lib/Makefile @@ -8,7 +8,7 @@ all: libcc.a libcc.a: $(OBJS) - ar r $@ $? + ar $(ARFLAGS) $@ $? ranlib $@ clean: