scc

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

commit 9af861a9ca611b8b04d0cb6d7713adae1ef0494b
parent e47976d5f8a1eb13b75a74b8bd7b34c8fdf1648d
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue,  5 Aug 2014 10:21:24 +0200

Add include dependency for sizes.h in cc1

This dependency was missed in the Makefile of
cc1, so changes of this common header was not
generating a new rebuild of it.

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

diff --git a/cc1/Makefile b/cc1/Makefile @@ -8,7 +8,7 @@ LIBS = -lcc all: cc1 -$(OBJS) : cc1.h ../inc/cc.h +$(OBJS) : cc1.h ../inc/cc.h ../inc/sizes.h cc1: $(OBJS) ../lib/libcc.a $(CC) $(LDFLAGS) $(CFLAGS) $(OBJS) $(LIBS) -o $@