Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Fox <pgf@brightstareng.com>2005-08-09 23:38:05 +0400
committerPaul Fox <pgf@brightstareng.com>2005-08-09 23:38:05 +0400
commit0b62158475ecbfce16fb857042ec7f402d7594ec (patch)
treed5f722c5d16a204996e46c84e8fe7923f8f40abf /libbb/Makefile.in
parent3f11b1bf634536cb01d9913d1a3d10da5bf24541 (diff)
implemented a builtin echo command in ash. moved the guts of the
echo applet into libbb, and now call bb_echo() from both echo.c and ash.c
Diffstat (limited to 'libbb/Makefile.in')
-rw-r--r--libbb/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/libbb/Makefile.in b/libbb/Makefile.in
index 212ed70b7..6685305f4 100644
--- a/libbb/Makefile.in
+++ b/libbb/Makefile.in
@@ -46,7 +46,8 @@ LIBBB_SRC:= \
get_terminal_width_height.c fclose_nonstdin.c fflush_stdout_and_exit.c \
getopt_ulflags.c default_error_retval.c wfopen_input.c speed_table.c \
perror_nomsg_and_die.c perror_nomsg.c skip_whitespace.c bb_askpass.c \
- warn_ignoring_args.c concat_subpath_file.c vfork_daemon_rexec.c
+ warn_ignoring_args.c concat_subpath_file.c vfork_daemon_rexec.c \
+ bb_echo.c
LIBBB_OBJS=$(patsubst %.c,$(LIBBB_DIR)%.o, $(LIBBB_SRC))