aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-01 16:01:11 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-01 16:01:11 +0000
commitc4cef5ab063d7abb604d48610424566202dcade0 (patch)
treec661196acbb1adfa81257a7f23b08bd15d653be8 /Makefile
parentf77d88641d934fbd9ed0da8c8e31c84dc5856532 (diff)
downloadbusybox-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--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ba2b2c3cb..231073a96 100644
--- a/Makefile
+++ b/Makefile
@@ -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
205OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o messages.o usage.o applets.o mtab_file.o 205OBJECTS = $(APPLET_SOURCES:.c=.o) busybox.o messages.o usage.o applets.o
206CFLAGS += $(CROSS_CFLAGS) 206CFLAGS += $(CROSS_CFLAGS)
207CFLAGS += -DBB_VER='"$(VERSION)"' 207CFLAGS += -DBB_VER='"$(VERSION)"'
208CFLAGS += -DBB_BT='"$(BUILDTIME)"' 208CFLAGS += -DBB_BT='"$(BUILDTIME)"'
@@ -236,7 +236,7 @@ my_getgrgid.c my_getpwnamegid.c my_getpwuid.c my_getgrnam.c my_getpwnam.c \
236recursive_action.c safe_read.c safe_strncpy.c syscalls.c \ 236recursive_action.c safe_read.c safe_strncpy.c syscalls.c \
237syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \ 237syslog_msg_with_name.c time_string.c trim.c vdprintf.c wfopen.c xfuncs.c \
238xregcomp.c error_msg_and_die.c perror_msg.c perror_msg_and_die.c \ 238xregcomp.c error_msg_and_die.c perror_msg.c perror_msg_and_die.c \
239verror_msg.c vperror_msg.c 239verror_msg.c vperror_msg.c mtab.c mtab_file.c
240LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC)) 240LIBBB_OBJS=$(patsubst %.c,$(LIBBB)/%.o, $(LIBBB_CSRC))
241LIBBB_CFLAGS = -I$(LIBBB_DIR) 241LIBBB_CFLAGS = -I$(LIBBB_DIR)
242 242