diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-13 12:45:33 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-11-13 12:45:33 +0100 |
commit | 73225b6d6e14f63e048fd95b504a2d909684699f (patch) | |
tree | fa4e412ed699e2e4abbc62d810cd8a9980055d5a /editors/ed.c | |
parent | f200f732f4d04a26814f109be8db2b6510e7127c (diff) | |
download | busybox-w32-73225b6d6e14f63e048fd95b504a2d909684699f.tar.gz busybox-w32-73225b6d6e14f63e048fd95b504a2d909684699f.tar.bz2 busybox-w32-73225b6d6e14f63e048fd95b504a2d909684699f.zip |
switch editors/* to embedded-in-source kbuild system
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'editors/ed.c')
-rw-r--r-- | editors/ed.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/editors/ed.c b/editors/ed.c index dbb51306c..3087fb0b9 100644 --- a/editors/ed.c +++ b/editors/ed.c | |||
@@ -7,6 +7,18 @@ | |||
7 | * The "ed" built-in command (much simplified) | 7 | * The "ed" built-in command (much simplified) |
8 | */ | 8 | */ |
9 | 9 | ||
10 | //config:config ED | ||
11 | //config: bool "ed" | ||
12 | //config: default y | ||
13 | //config: help | ||
14 | //config: The original 1970's Unix text editor, from the days of teletypes. | ||
15 | //config: Small, simple, evil. Part of SUSv3. If you're not already using | ||
16 | //config: this, you don't need it. | ||
17 | |||
18 | //kbuild:lib-$(CONFIG_ED) += ed.o | ||
19 | |||
20 | //applet:IF_ED(APPLET(ed, BB_DIR_BIN, BB_SUID_DROP)) | ||
21 | |||
10 | //usage:#define ed_trivial_usage "" | 22 | //usage:#define ed_trivial_usage "" |
11 | //usage:#define ed_full_usage "" | 23 | //usage:#define ed_full_usage "" |
12 | 24 | ||