# HG changeset patch # User Rob Landley # Date 1196149467 21600 # Node ID 2d0de0d21e80cd13454cc8a09cd58c702e5e439b # Parent 93899f7c3e0cb797ec24fc1f4181ff77b2869be1 Add a comment about a case that made me stop and think. diff -r 93899f7c3e0c -r 2d0de0d21e80 Makefile --- a/Makefile Sun Nov 25 16:54:29 2007 +0000 +++ b/Makefile Tue Nov 27 01:44:27 2007 -0600 @@ -46,6 +46,9 @@ toyfiles = main.c lib/*.c \ $(shell scripts/cfg2files.sh < .config | sed 's@\(.*\)@toys/\1.c@') +# The following still depends on toys/help.h even when it's not there, so *.h +# isn't sufficient by itself. + toybox_unstripped: gen_config.h $(toyfiles) toys/toylist.h toys/help.h toys/*.h lib/*.h toys.h $(CC) $(CCFLAGS) -I . $(toyfiles) -o toybox_unstripped $(OPTIMIZE)