scc

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

commit 96e374472046128ac41a85125493019740c8b5c1
parent 68258c2a3d9ec811eaf4590d917d90666d549eb1
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 25 Sep 2015 17:44:10 +0200

Add arch dependency to cc1/Makefile

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

diff --git a/cc1/Makefile b/cc1/Makefile @@ -7,7 +7,7 @@ all: cc1 .POSIX: -$(OBJS) : cc1.h ../inc/cc.h ../inc/sizes.h +$(OBJS) : cc1.h ../inc/cc.h ../inc/sizes.h arch/$(ARCH)/arch.h cc1: $(OBJS) ../lib/libcc.a $(CC) $(LDFLAGS) $(OBJS) ../lib/libcc.a -o $@