diff options
| author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-14 21:41:15 +0000 |
|---|---|---|
| committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-14 21:41:15 +0000 |
| commit | 432d69cb41be34586eb2c26b65618f7d024a7ef7 (patch) | |
| tree | f1334f89711bb7b703c74ba209268b726a0fdd28 /applets | |
| parent | 0e0639b7020d5b6c58947393232c5445631767bd (diff) | |
| download | busybox-w32-432d69cb41be34586eb2c26b65618f7d024a7ef7.tar.gz busybox-w32-432d69cb41be34586eb2c26b65618f7d024a7ef7.tar.bz2 busybox-w32-432d69cb41be34586eb2c26b65618f7d024a7ef7.zip | |
applets/Kbuild: straighten it a bit
Diffstat (limited to 'applets')
| -rw-r--r-- | applets/Kbuild | 19 | ||||
| -rw-r--r-- | applets/usage.c | 2 |
2 files changed, 12 insertions, 9 deletions
diff --git a/applets/Kbuild b/applets/Kbuild index 4afab88ce..e6c5bd506 100644 --- a/applets/Kbuild +++ b/applets/Kbuild | |||
| @@ -5,18 +5,21 @@ | |||
| 5 | # Licensed under the GPL v2, see the file LICENSE in this tarball. | 5 | # Licensed under the GPL v2, see the file LICENSE in this tarball. |
| 6 | 6 | ||
| 7 | obj-y:= | 7 | obj-y:= |
| 8 | obj-y += applets.o | 8 | obj-y += applets.o |
| 9 | 9 | ||
| 10 | # Generated file needs additional love | 10 | hostprogs-y:= |
| 11 | hostprogs-y += usage | ||
| 11 | 12 | ||
| 12 | applets/usage: .config | 13 | always:= $(hostprogs-y) |
| 13 | applets/applets.o: .config include/usage_compressed.h | ||
| 14 | 14 | ||
| 15 | hostprogs-y += usage | 15 | # Generated files need additional love |
| 16 | always := $(hostprogs-y) | ||
| 17 | HOSTCFLAGS_usage.o = -I$(srctree)/include | ||
| 18 | 16 | ||
| 19 | quiet_cmd_gen_usage_compressed = GEN include/usage_compressed.h | 17 | quiet_cmd_gen_usage_compressed = GEN include/usage_compressed.h |
| 20 | cmd_gen_usage_compressed = $(srctree)/applets/usage_compressed include/usage_compressed.h applets | 18 | cmd_gen_usage_compressed = $(srctree)/applets/usage_compressed include/usage_compressed.h applets |
| 21 | include/usage_compressed.h: .config $(srctree)/include/usage.h applets/usage | 19 | |
| 20 | HOSTCFLAGS_usage.o = -I$(srctree)/include | ||
| 21 | |||
| 22 | applets/applets.o: include/usage_compressed.h | ||
| 23 | applets/usage: .config | ||
| 24 | include/usage_compressed.h: applets/usage | ||
| 22 | $(call cmd,gen_usage_compressed) | 25 | $(call cmd,gen_usage_compressed) |
diff --git a/applets/usage.c b/applets/usage.c index f2281d699..c128b52f8 100644 --- a/applets/usage.c +++ b/applets/usage.c | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | /* vi: set sw=4 ts=4: */ | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | #include <unistd.h> | 2 | #include <unistd.h> |
| 3 | 3 | ||
| 4 | #include "../include/autoconf.h" | 4 | #include "autoconf.h" |
| 5 | 5 | ||
| 6 | static const char usage_messages[] = "" | 6 | static const char usage_messages[] = "" |
| 7 | #define MAKE_USAGE | 7 | #define MAKE_USAGE |
