diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-19 18:37:42 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-19 18:37:42 +0000 |
commit | c75586e06d77ff82262e2199ccb5b2863b42caf3 (patch) | |
tree | ff6187d1926d22d8b3031a642567cae20ef4c23b /Makefile | |
parent | 61173a537149484dfaaeb8f94a2c86ef01d30613 (diff) | |
download | busybox-w32-c75586e06d77ff82262e2199ccb5b2863b42caf3.tar.gz busybox-w32-c75586e06d77ff82262e2199ccb5b2863b42caf3.tar.bz2 busybox-w32-c75586e06d77ff82262e2199ccb5b2863b42caf3.zip |
Split libbb/pwd_grp_wrappers.c into 5 different libbb/my_* files.
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -230,7 +230,8 @@ find_mount_point.c find_pid_by_name.c find_root_device.c full_read.c \ | |||
230 | full_write.c get_console.c get_last_path_component.c get_line_from_file.c \ | 230 | full_write.c get_console.c get_last_path_component.c get_line_from_file.c \ |
231 | human_readable.c inode_hash.c isdirectory.c kernel_version.c loop.c \ | 231 | human_readable.c inode_hash.c isdirectory.c kernel_version.c loop.c \ |
232 | mode_string.c parse_mode.c parse_number.c print_file.c process_escape_sequence.c \ | 232 | mode_string.c parse_mode.c parse_number.c print_file.c process_escape_sequence.c \ |
233 | pwd_grp_wrappers.c recursive_action.c safe_read.c safe_strncpy.c syscalls.c \ | 233 | my_getgrgid.c my_getpwnamegid.c my_getpwuid.c my_getgrnam.c my_getpwnam.c \ |
234 | recursive_action.c safe_read.c safe_strncpy.c syscalls.c \ | ||
234 | syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \ | 235 | syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \ |
235 | xregcomp.c | 236 | xregcomp.c |
236 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) | 237 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) |
@@ -322,7 +323,7 @@ $(PWD_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile | |||
322 | - mkdir -p $(PWD_GRP) | 323 | - mkdir -p $(PWD_GRP) |
323 | $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o | 324 | $(CC) $(CFLAGS) $(PWD_CFLAGS) -c $< -o $*.o |
324 | 325 | ||
325 | $(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile | 326 | $(LIBBB_OBJS): %.o: %.c Config.h busybox.h applets.h Makefile libbb/libbb.h |
326 | - mkdir -p $(LIBBB) | 327 | - mkdir -p $(LIBBB) |
327 | $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o | 328 | $(CC) $(CFLAGS) $(LIBBB_CFLAGS) -c $< -o $*.o |
328 | 329 | ||