diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-01 16:01:11 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-01 16:01:11 +0000 |
commit | c4cef5ab063d7abb604d48610424566202dcade0 (patch) | |
tree | c661196acbb1adfa81257a7f23b08bd15d653be8 /Makefile | |
parent | f77d88641d934fbd9ed0da8c8e31c84dc5856532 (diff) | |
download | busybox-w32-c4cef5ab063d7abb604d48610424566202dcade0.tar.gz busybox-w32-c4cef5ab063d7abb604d48610424566202dcade0.tar.bz2 busybox-w32-c4cef5ab063d7abb604d48610424566202dcade0.zip |
Move the mtab support stuff into libbb
-Erik
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -202,7 +202,7 @@ endif | |||
202 | # And option 4: | 202 | # And option 4: |
203 | -include applet_source_list | 203 | -include applet_source_list |
204 | 204 | ||
205 | OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o messages.o usage.o applets.o mtab_file.o | 205 | OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o messages.o usage.o applets.o |
206 | CFLAGS += $(CROSS_CFLAGS) | 206 | CFLAGS += $(CROSS_CFLAGS) |
207 | CFLAGS += -DBB_VER='"$(VERSION)"' | 207 | CFLAGS += -DBB_VER='"$(VERSION)"' |
208 | CFLAGS += -DBB_BT='"$(BUILDTIME)"' | 208 | CFLAGS += -DBB_BT='"$(BUILDTIME)"' |
@@ -236,7 +236,7 @@ my_getgrgid.c my_getpwnamegid.c my_getpwuid.c my_getgrnam.c my_getpwnam.c \ | |||
236 | recursive_action.c safe_read.c safe_strncpy.c syscalls.c \ | 236 | recursive_action.c safe_read.c safe_strncpy.c syscalls.c \ |
237 | 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 \ |
238 | xregcomp.c error_msg_and_die.c perror_msg.c perror_msg_and_die.c \ | 238 | xregcomp.c error_msg_and_die.c perror_msg.c perror_msg_and_die.c \ |
239 | verror_msg.c vperror_msg.c | 239 | verror_msg.c vperror_msg.c mtab.c mtab_file.c |
240 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) | 240 | LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) |
241 | LIBBB_CFLAGS = -I$(LIBBB_DIR) | 241 | LIBBB_CFLAGS = -I$(LIBBB_DIR) |
242 | 242 | ||