diff options
| author | Rob Landley <rob@landley.net> | 2007-11-27 01:44:27 -0600 |
|---|---|---|
| committer | Rob Landley <rob@landley.net> | 2007-11-27 01:44:27 -0600 |
| commit | f7bb55bb14128a2b9367e2e089e9930c456f801f (patch) | |
| tree | fad3c3760b7a232289fd9f0a8267715edac7aaad | |
| parent | d213bc2a8699fc75527dbf23aa320fcdf770014f (diff) | |
| download | toybox-f7bb55bb14128a2b9367e2e089e9930c456f801f.tar.gz | |
Add a comment about a case that made me stop and think.
| -rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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) |
