scc

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

commit 07fd1c66c64013984489b697dc6441cc4d505cc8
parent f57e3cdeac2d25eb24daf43d5d233edea659f09c
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 29 Nov 2016 14:13:56 +0100

Use ln instead of cp

All the targets use ln instead of cp, so it is better to use
the same logic everywhere.

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -14,7 +14,7 @@ all: driver/$(DRIVER)/scc driver/$(DRIVER)/scc: bin cd driver/$(DRIVER)/ && $(MAKE) scc - cp -f driver/$(DRIVER)/scc bin/scc + ln -f driver/$(DRIVER)/scc bin/scc $(ARCHS): bin mkdir -p bin