changeset 184:2d0de0d21e80

Add a comment about a case that made me stop and think.
author Rob Landley <rob@landley.net>
date Tue, 27 Nov 2007 01:44:27 -0600
parents 93899f7c3e0c
children 29e2051296fd
files Makefile
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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)