diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-03-19 19:24:06 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-03-19 19:24:06 +0000 |
commit | b183dfad2daea713e712470d206b0f0287331083 (patch) | |
tree | 26a1f1080be5f9f44c72b45b72aae743d74685dd /Makefile | |
parent | cc165b9083e8e4fb01992a8e0d97ecf08cb6dcdd (diff) | |
download | busybox-w32-b183dfad2daea713e712470d206b0f0287331083.tar.gz busybox-w32-b183dfad2daea713e712470d206b0f0287331083.tar.bz2 busybox-w32-b183dfad2daea713e712470d206b0f0287331083.zip |
Split error messages into separate files.
Update libbb.h, per suggestion from Vladimir, to include __attribute__((format
(printf ...))) stuff
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -110,6 +110,8 @@ OPTIMIZATION := $(shell if $(CC) -Os -S -o /dev/null -xc /dev/null >/dev/null 2> | |||
110 | 110 | ||
111 | WARNINGS = -Wall | 111 | WARNINGS = -Wall |
112 | 112 | ||
113 | ARFLAGS = -r | ||
114 | |||
113 | # | 115 | # |
114 | #-------------------------------------------------------- | 116 | #-------------------------------------------------------- |
115 | # If you're going to do a lot of builds with a non-vanilla configuration, | 117 | # If you're going to do a lot of builds with a non-vanilla configuration, |
@@ -233,7 +235,8 @@ mode_string.c parse_mode.c parse_number.c print_file.c process_escape_sequence.c | |||
233 | my_getgrgid.c my_getpwnamegid.c my_getpwuid.c my_getgrnam.c my_getpwnam.c \ | 235 | 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 \ | 236 | recursive_action.c safe_read.c safe_strncpy.c syscalls.c \ |
235 | syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \ | 237 | syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \ |
236 | xregcomp.c | 238 | xregcomp.c error_msg_and_die.c perror_msg.c perror_msg_and_die.c \ |
239 | verror_msg.c vperror_msg.c | ||
237 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) | 240 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) |
238 | LIBBB_CFLAGS = -I$(LIBBB_DIR) | 241 | LIBBB_CFLAGS = -I$(LIBBB_DIR) |
239 | 242 | ||