diff options
author | Rob Landley <rob@landley.net> | 2006-08-09 20:56:23 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-08-09 20:56:23 +0000 |
commit | 519d7df930d2ac14b7a833c0255a4a5abd5a329b (patch) | |
tree | ad8d4242826335c7e418648d60d82a55095f11e1 /applets | |
parent | e55a73c7a89d9437bda82d317ee980989a5949db (diff) | |
download | busybox-w32-519d7df930d2ac14b7a833c0255a4a5abd5a329b.tar.gz busybox-w32-519d7df930d2ac14b7a833c0255a4a5abd5a329b.tar.bz2 busybox-w32-519d7df930d2ac14b7a833c0255a4a5abd5a329b.zip |
Another whack at scripts/individual. Now builds 212 applets.
Diffstat (limited to 'applets')
-rw-r--r-- | applets/Makefile.in | 2 | ||||
-rw-r--r-- | applets/version.c | 17 |
2 files changed, 1 insertions, 18 deletions
diff --git a/applets/Makefile.in b/applets/Makefile.in index 02bcda93b..a4890c2fb 100644 --- a/applets/Makefile.in +++ b/applets/Makefile.in | |||
@@ -10,7 +10,7 @@ APPLETS_DIR:=$(top_builddir)/applets/ | |||
10 | endif | 10 | endif |
11 | srcdir=$(top_srcdir)/applets | 11 | srcdir=$(top_srcdir)/applets |
12 | 12 | ||
13 | APPLET_SRC:= $(patsubst %,$(srcdir)/%,applets.c busybox.c version.c) | 13 | APPLET_SRC:= $(patsubst %,$(srcdir)/%,applets.c busybox.c) |
14 | APPLET_OBJ:= $(patsubst $(srcdir)/%.c,$(APPLETS_DIR)%.o, $(APPLET_SRC)) | 14 | APPLET_OBJ:= $(patsubst $(srcdir)/%.c,$(APPLETS_DIR)%.o, $(APPLET_SRC)) |
15 | 15 | ||
16 | APPLET_SRC-y+=$(APPLET_SRC) | 16 | APPLET_SRC-y+=$(APPLET_SRC) |
diff --git a/applets/version.c b/applets/version.c deleted file mode 100644 index ce75f1ff9..000000000 --- a/applets/version.c +++ /dev/null | |||
@@ -1,17 +0,0 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Version stuff. | ||
4 | * | ||
5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | ||
6 | */ | ||
7 | |||
8 | #include "busybox.h" | ||
9 | |||
10 | #ifndef BB_EXTRA_VERSION | ||
11 | #define BANNER "BusyBox v" BB_VER " (" BB_BT ")" | ||
12 | #else | ||
13 | #define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")" | ||
14 | #endif | ||
15 | |||
16 | const char BB_BANNER[]=BANNER; | ||
17 | const char * const bb_msg_full_version = BANNER " multi-call binary"; | ||