aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-03-19 18:37:42 +0000
committerEric Andersen <andersen@codepoet.org>2001-03-19 18:37:42 +0000
commitc75586e06d77ff82262e2199ccb5b2863b42caf3 (patch)
treeff6187d1926d22d8b3031a642567cae20ef4c23b /Makefile
parent61173a537149484dfaaeb8f94a2c86ef01d30613 (diff)
downloadbusybox-c75586e06d77ff82262e2199ccb5b2863b42caf3.tar.gz
Split libbb/pwd_grp_wrappers.c into 5 different libbb/my_* files.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5f5c80e6d..1cd9c864c 100644
--- a/Makefile
+++ b/Makefile
@@ -230,7 +230,8 @@ find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \
full_write.c get_console.c get_last_path_component.c get_line_from_file.c \
human_readable.c inode_hash.c isdirectory.c kernel_version.c loop.c \
mode_string.c parse_mode.c parse_number.c print_file.c process_escape_sequence.c \
-pwd_grp_wrappers.c recursive_action.c safe_read.c safe_strncpy.c syscalls.c \
+my_getgrgid.c my_getpwnamegid.c my_getpwuid.c my_getgrnam.c my_getpwnam.c \
+recursive_action.c safe_read.c safe_strncpy.c syscalls.c \
syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \
xregcomp.c
LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
@@ -322,7 +323,7 @@ $(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
- mkdir -p $(PWD_GRP)
$(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o
-$(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile
+$(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile libbb/libbb.h
- mkdir -p $(LIBBB)
$(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o