scc

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

commit 93de81a5485ea8183c494cd1e67bb988fa91117c
parent fcc35769bdb9d890ed1316fb68649138007c2a34
Author: Roberto E. Vargas Caballero <roberto.vargas@igrid-td.com>
Date:   Thu, 31 Mar 2016 08:58:05 +0200

Compile library in multi target

Library is needed for all the target architectures,
so it is safer if we explicitily compile it in the
makefile multi target.

Diffstat:
MMakefile | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -17,6 +17,7 @@ all: strip bin/cc1 bin/cc2 bin/scc multi: + cd lib && $(MAKE) -e $(MAKEFLAGS) for i in $(ARCHS) ; \ do \ $(MAKE) -$(MAKEFLAGS) $$i || exit ;\