ref: 9af861a9ca611b8b04d0cb6d7713adae1ef0494b
parent: e47976d5f8a1eb13b75a74b8bd7b34c8fdf1648d
author: Roberto E. Vargas Caballero <[email protected]>
date: Tue Aug 5 06:21:24 EDT 2014
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.
--- a/cc1/Makefile
+++ b/cc1/Makefile
@@ -8,7 +8,7 @@
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 $@