scc

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

commit 07b012b6529ddca3385618900328b77cfa73c5ba
parent 9a96d45d5f3495592011d19b23b5f775fb321872
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon,  5 Oct 2015 20:47:53 +0200

Fix name of cpp in Makefile

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

diff --git a/cc1/Makefile b/cc1/Makefile @@ -13,7 +13,7 @@ cc1: $(OBJS) ../lib/libcc.a $(CC) $(LDFLAGS) $(OBJS) ../lib/libcc.a -o $@ cpp: cc1 - ln cc1 ccp + ln cc1 cpp test: cd tests && ./chktest.sh