aboutsummaryrefslogtreecommitdiff
path: root/applets/applet_tables.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-03-23 01:08:26 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2010-03-23 01:08:26 +0100
commit1497484839efd4c57d63c07e2b92413193a3977f (patch)
tree5287750a4c55b433f73c3636d8aa8cffe6ecc71b /applets/applet_tables.c
parent85dbf190c69f747cea3f8cdabecb3464ab1351be (diff)
downloadbusybox-w32-1497484839efd4c57d63c07e2b92413193a3977f.tar.gz
busybox-w32-1497484839efd4c57d63c07e2b92413193a3977f.tar.bz2
busybox-w32-1497484839efd4c57d63c07e2b92413193a3977f.zip
ash,hush: make it possible to build them individually
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'applets/applet_tables.c')
-rw-r--r--applets/applet_tables.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/applets/applet_tables.c b/applets/applet_tables.c
index e67f017e7..e48be4682 100644
--- a/applets/applet_tables.c
+++ b/applets/applet_tables.c
@@ -79,6 +79,7 @@ int main(int argc, char **argv)
79 } 79 }
80 printf("\n"); 80 printf("\n");
81 81
82 printf("#ifndef SKIP_definitions\n");
82 printf("const char applet_names[] ALIGN1 = \"\"\n"); 83 printf("const char applet_names[] ALIGN1 = \"\"\n");
83 for (i = 0; i < NUM_APPLETS; i++) { 84 for (i = 0; i < NUM_APPLETS; i++) {
84 printf("\"%s\" \"\\0\"\n", applets[i].name); 85 printf("\"%s\" \"\\0\"\n", applets[i].name);
@@ -120,9 +121,10 @@ int main(int argc, char **argv)
120 printf("0x%02x,\n", v); 121 printf("0x%02x,\n", v);
121 i++; 122 i++;
122 } 123 }
123 printf("};\n\n"); 124 printf("};\n");
124#endif 125#endif
125 126 printf("#endif /* SKIP_definitions */\n");
127 printf("\n");
126 printf("#define MAX_APPLET_NAME_LEN %u\n", MAX_APPLET_NAME_LEN); 128 printf("#define MAX_APPLET_NAME_LEN %u\n", MAX_APPLET_NAME_LEN);
127 129
128 return 0; 130 return 0;