aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2007-11-27 01:44:27 -0600
committerRob Landley <rob@landley.net>2007-11-27 01:44:27 -0600
commitf7bb55bb14128a2b9367e2e089e9930c456f801f (patch)
treefad3c3760b7a232289fd9f0a8267715edac7aaad /Makefile
parentd213bc2a8699fc75527dbf23aa320fcdf770014f (diff)
downloadtoybox-f7bb55bb14128a2b9367e2e089e9930c456f801f.tar.gz
Add a comment about a case that made me stop and think.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3c21757c..1d41d145 100644
--- a/Makefile
+++ b/Makefile
@@ -46,6 +46,9 @@ bloatcheck: toybox_old toybox_unstripped
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)