diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-06 14:53:43 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-06 14:53:43 +0000 |
commit | 664c6e7ea0ed6c78ed84e4055532e9d32e38731b (patch) | |
tree | 852bd7c20bb1ad17899a7b536e43d86775299249 | |
parent | d5f2a18e19c97d3efaf3ab72375e886a0f5b94a7 (diff) | |
download | busybox-w32-664c6e7ea0ed6c78ed84e4055532e9d32e38731b.tar.gz busybox-w32-664c6e7ea0ed6c78ed84e4055532e9d32e38731b.tar.bz2 busybox-w32-664c6e7ea0ed6c78ed84e4055532e9d32e38731b.zip |
update documentation
-rw-r--r-- | scripts/bb_mkdep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/bb_mkdep.c b/scripts/bb_mkdep.c index afc8a98d1..0a2054c03 100644 --- a/scripts/bb_mkdep.c +++ b/scripts/bb_mkdep.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Another fast dependencies generator for Makefiles, Version 2.3 | 2 | * Another fast dependencies generator for Makefiles, Version 2.4 |
3 | * | 3 | * |
4 | * Copyright (C) 2005 by Vladimir Oleynik <dzo@simtreas.ru> | 4 | * Copyright (C) 2005 by Vladimir Oleynik <dzo@simtreas.ru> |
5 | * mmaping file may be originally by Linus Torvalds. | 5 | * mmaping file may be originally by Linus Torvalds. |
@@ -12,10 +12,10 @@ | |||
12 | * This program does: | 12 | * This program does: |
13 | * 1) find #define KEY VALUE or #undef KEY from include/config.h | 13 | * 1) find #define KEY VALUE or #undef KEY from include/config.h |
14 | * 2) save include/config/key*.h if changed after previous usage | 14 | * 2) save include/config/key*.h if changed after previous usage |
15 | * 3) recursive scan from "./" *.[ch] files, but skips scan of include/config/ | 15 | * 3) recursive find and scan *.[ch] files, but skips scan of include/config/ |
16 | * 4) find #include "*.h" and KEYs using, if not as #define and #undef | 16 | * 4) find #include "*.h" and KEYs using, if not as #define and #undef |
17 | * 5) generate dependencies to stdout | 17 | * 5) generate dependencies to stdout |
18 | * path/file.o: include/config/key*.h found_include_*.h | 18 | * pwd/file.o: include/config/key*.h found_include_*.h |
19 | * path/inc.h: include/config/key*.h found_included_include_*.h | 19 | * path/inc.h: include/config/key*.h found_included_include_*.h |
20 | * This program does not generate dependencies for #include <...> | 20 | * This program does not generate dependencies for #include <...> |
21 | * BUG: all includes name must unique | 21 | * BUG: all includes name must unique |