summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2001-06-21 19:41:37 +0000
committerMatt Kraai <kraai@debian.org>2001-06-21 19:41:37 +0000
commitceeff7381929930fe8d7e33543e285d5fdcf1c68 (patch)
tree3cdbaddffecc92649215fdc71a43b4e8e86b7ea3 /Makefile
parent091781e20eb055ac286b5a617d53a50c7d6c451e (diff)
downloadbusybox-w32-ceeff7381929930fe8d7e33543e285d5fdcf1c68.tar.gz
busybox-w32-ceeff7381929930fe8d7e33543e285d5fdcf1c68.tar.bz2
busybox-w32-ceeff7381929930fe8d7e33543e285d5fdcf1c68.zip
Rewrote mkdir (and touched lots of things in the process).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 03feb6306..89d56d50c 100644
--- a/Makefile
+++ b/Makefile
@@ -237,7 +237,7 @@ endif
237LIBBB = libbb 237LIBBB = libbb
238LIBBB_LIB = libbb.a 238LIBBB_LIB = libbb.a
239LIBBB_CSRC= ask_confirmation.c chomp.c concat_path_file.c copy_file.c \ 239LIBBB_CSRC= ask_confirmation.c chomp.c concat_path_file.c copy_file.c \
240copy_file_chunk.c create_path.c daemon.c device_open.c error_msg.c \ 240copy_file_chunk.c daemon.c device_open.c error_msg.c \
241error_msg_and_die.c fgets_str.c find_mount_point.c find_pid_by_name.c \ 241error_msg_and_die.c fgets_str.c find_mount_point.c find_pid_by_name.c \
242find_root_device.c full_read.c full_write.c get_console.c \ 242find_root_device.c full_read.c full_write.c get_console.c \
243get_last_path_component.c get_line_from_file.c gz_open.c human_readable.c \ 243get_last_path_component.c get_line_from_file.c gz_open.c human_readable.c \
@@ -248,7 +248,8 @@ print_file.c process_escape_sequence.c read_package_field.c recursive_action.c \
248safe_read.c safe_strncpy.c syscalls.c syslog_msg_with_name.c time_string.c \ 248safe_read.c safe_strncpy.c syscalls.c syslog_msg_with_name.c time_string.c \
249trim.c unarchive.c unzip.c vdprintf.c verror_msg.c vperror_msg.c wfopen.c xfuncs.c \ 249trim.c unarchive.c unzip.c vdprintf.c verror_msg.c vperror_msg.c wfopen.c xfuncs.c \
250xgetcwd.c xreadlink.c xregcomp.c interface.c remove_file.c last_char_is.c \ 250xgetcwd.c xreadlink.c xregcomp.c interface.c remove_file.c last_char_is.c \
251copyfd.c vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c 251copyfd.c vherror_msg.c herror_msg.c herror_msg_and_die.c xgethostbyname.c \
252dirname.c make_directory.c strdup_substr.c
252LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) 253LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
253LIBBB_CFLAGS = -I$(LIBBB) 254LIBBB_CFLAGS = -I$(LIBBB)
254ifneq ($(strip $(BB_SRC_DIR)),) 255ifneq ($(strip $(BB_SRC_DIR)),)