shithub: scc

Download patch

ref: 8c9ce06b6ef102af0618580eda1f0648beabfc9f
parent: 2fad6a4bf9c95e020df930acd1691c295b173ac1
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Thu Mar 31 04:58:05 EDT 2016

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.

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