Denis Vlasenko spotted the lack of bounds checking in my first attempt at
[oweals/busybox.git] / libbb / Makefile.in
1 # Makefile for busybox
2 #
3 # Copyright (C) 1999-2005 by Erik Andersen <andersen@codepoet.org>
4 #
5 # Licensed under the GPL v2, see the file LICENSE in this tarball.
6
7 ifndef $(LIBBB_DIR)
8 LIBBB_DIR:=$(top_builddir)/libbb
9 endif
10 srcdir=$(top_srcdir)/libbb
11
12 LIBBB-n:=
13 LIBBB-y:= \
14         bb_asprintf.c ask_confirmation.c change_identity.c chomp.c \
15         compare_string_array.c concat_path_file.c copy_file.c copyfd.c \
16         crc32.c create_icmp_socket.c create_icmp6_socket.c \
17         device_open.c dump.c error_msg.c error_msg_and_die.c \
18         find_pid_by_name.c find_root_device.c fgets_str.c full_read.c \
19         full_write.c get_last_path_component.c get_line_from_file.c \
20         herror_msg.c herror_msg_and_die.c \
21         human_readable.c inet_common.c inode_hash.c isdirectory.c \
22         kernel_version.c last_char_is.c login.c \
23         make_directory.c md5.c mode_string.c mtab_file.c \
24         obscure.c parse_mode.c parse_number.c perror_msg.c \
25         perror_msg_and_die.c print_file.c get_console.c \
26         process_escape_sequence.c procps.c qmodule.c \
27         read_package_field.c recursive_action.c remove_file.c \
28         restricted_shell.c run_parts.c run_shell.c safe_read.c safe_write.c \
29         safe_strncpy.c setup_environment.c sha1.c simplify_path.c \
30         trim.c u_signal_names.c vdprintf.c verror_msg.c \
31         vherror_msg.c vperror_msg.c wfopen.c xconnect.c xgetcwd.c xstat.c \
32         xgethostbyname.c xgethostbyname2.c xreadlink.c xregcomp.c xgetlarg.c \
33         bb_xsocket.c bb_xdaemon.c bb_xbind.c bb_xlisten.c bb_xchdir.c \
34         get_terminal_width_height.c fclose_nonstdin.c fflush_stdout_and_exit.c \
35         getopt_ulflags.c default_error_retval.c wfopen_input.c speed_table.c \
36         perror_nomsg_and_die.c perror_nomsg.c skip_whitespace.c bb_askpass.c \
37         warn_ignoring_args.c concat_subpath_file.c vfork_daemon_rexec.c \
38         bb_do_delay.c
39
40 # conditionally compiled objects:
41 LIBBB-$(CONFIG_FEATURE_SHADOWPASSWDS)+=pwd2spwd.c
42 LIBBB-$(CONFIG_FEATURE_MOUNT_LOOP)+= loop.c
43 LIBBB-$(CONFIG_LOSETUP)+= loop.c
44 LIBBB-$(CONFIG_FEATURE_MTAB_SUPPORT)+= mtab.c
45 LIBBB-$(CONFIG_PASSWD)+= pw_encrypt.c
46 LIBBB-$(CONFIG_SULOGIN)+= pw_encrypt.c
47 LIBBB-$(CONFIG_FEATURE_HTTPD_AUTH_MD5)+= pw_encrypt.c
48 LIBBB-$(CONFIG_VLOCK)+= correct_password.c
49 LIBBB-$(CONFIG_SU)+= correct_password.c
50 LIBBB-$(CONFIG_LOGIN)+= correct_password.c
51 LIBBB-$(CONFIG_DF)+= find_mount_point.c
52 LIBBB-$(CONFIG_EJECT)+= find_mount_point.c
53
54 LIBBB-y:=$(patsubst %,$(srcdir)/%,$(LIBBB-y))
55
56 get-file-subparts = $(addsuffix .o,$(shell sed -n -e "s/^\#ifdef L_//p" ${1}))
57
58 # 1:N objects
59 LIBBB_MSRC0:=$(srcdir)/messages.c
60 LIBBB_MOBJ0:=$(call get-file-subparts, ${LIBBB_MSRC0})
61 LIBBB_MOBJ0:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ0))
62 $(LIBBB_MOBJ0):$(LIBBB_MSRC0)
63         $(compile.c) -DL_$(notdir $*)
64
65 LIBBB_MSRC1:=$(srcdir)/xfuncs.c
66 LIBBB_MOBJ1:=$(call get-file-subparts, ${LIBBB_MSRC1})
67 LIBBB_MOBJ1:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ1))
68 $(LIBBB_MOBJ1):$(LIBBB_MSRC1)
69         $(compile.c) -DL_$(notdir $*)
70
71 LIBBB_MSRC2:=$(srcdir)/printf.c
72 LIBBB_MOBJ2:=$(call get-file-subparts, ${LIBBB_MSRC2})
73 LIBBB_MOBJ2:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ2))
74 $(LIBBB_MOBJ2):$(LIBBB_MSRC2)
75         $(compile.c) -DL_$(notdir $*)
76
77 LIBBB_MSRC3:=$(srcdir)/xgetularg.c
78 LIBBB_MOBJ3:=$(call get-file-subparts, ${LIBBB_MSRC3})
79 LIBBB_MOBJ3:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ3))
80 $(LIBBB_MOBJ3):$(LIBBB_MSRC3)
81         $(compile.c) -DL_$(notdir $*)
82
83 LIBBB_MSRC4:=$(srcdir)/safe_strtol.c
84 LIBBB_MOBJ4:=$(call get-file-subparts, ${LIBBB_MSRC4})
85 LIBBB_MOBJ4:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ4))
86 $(LIBBB_MOBJ4):$(LIBBB_MSRC4)
87         $(compile.c) -DL_$(notdir $*)
88
89 LIBBB_MSRC5:=$(srcdir)/bb_pwd.c
90 LIBBB_MOBJ5:=$(call get-file-subparts, ${LIBBB_MSRC5})
91 LIBBB_MOBJ5:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ5))
92 $(LIBBB_MOBJ5):$(LIBBB_MSRC5)
93         $(compile.c) -DL_$(notdir $*)
94
95 LIBBB_MSRC6:=$(srcdir)/llist.c
96 LIBBB_MOBJ6:=$(call get-file-subparts, ${LIBBB_MSRC6})
97 LIBBB_MOBJ6:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ6))
98 $(LIBBB_MOBJ6):$(LIBBB_MSRC6)
99         $(compile.c) -DL_$(notdir $*)
100
101 LIBBB_MSRC7:=$(srcdir)/opendir.c
102 LIBBB_MOBJ7:=$(call get-file-subparts, ${LIBBB_MSRC7})
103 LIBBB_MOBJ7:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ7))
104 $(LIBBB_MOBJ7):$(LIBBB_MSRC7)
105         $(compile.c) -DL_$(notdir $*)
106
107 # We need the names of the object files built from MSRC for the L_ defines
108 LIBBB_ALL_MOBJ:=$(LIBBB_MOBJ0) $(LIBBB_MOBJ1) $(LIBBB_MOBJ2) $(LIBBB_MOBJ3) \
109         $(LIBBB_MOBJ4) $(LIBBB_MOBJ5) $(LIBBB_MOBJ6) $(LIBBB_MOBJ7)
110
111 LIBBB_ALL_MSRC:=$(LIBBB_MSRC0) $(LIBBB_MSRC1) $(LIBBB_MSRC2) $(LIBBB_MSRC3) \
112         $(LIBBB_MSRC4) $(LIBBB_MSRC5) $(LIBBB_MSRC6) $(LIBBB_MSRC7)
113
114 LIBBB-y:=$(sort $(LIBBB-y) $(LIBBB_ALL_MSRC))
115
116 LIBBB_AR:=$(LIBBB_DIR)/libbb.a
117 libraries-y+=$(LIBBB_AR)
118
119 needcrypt-y:=
120 ifneq ($(filter $(srcdir)/pw_encrypt.c,$(LIBBB-y)),)
121 needcrypt-y:=y
122 else
123 ifneq ($(filter $(srcdir)/correct_password.c,$(LIBBB-y)),)
124 needcrypt-y:=y
125 endif
126 endif
127
128 ifeq ($(needcrypt-y),y)
129   LIBRARIES := -lcrypt $(filter-out -lcrypt,$(LIBRARIES))
130 endif
131
132 # all 1:1 objects
133 LIBBB_OBJS:=$(patsubst $(srcdir)/%.c,$(LIBBB_DIR)/%.o, $(LIBBB-y))
134 $(LIBBB_DIR)/%.o: $(srcdir)/%.c
135         $(compile.c)
136
137 LIBBB_SRC-a:=$(wildcard $(srcdir)/*.c)
138 LIBRARY_SRC-y+=$(LIBBB-y)
139 LIBRARY_SRC-a+=$(LIBBB_SRC-a)
140
141 # all defines needed for 1:N objects
142 LIBBB_DEFINE-y:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(LIBBB_ALL_MOBJ))))
143 LIBRARY_DEFINE-y+=$(LIBBB_DEFINE-y)
144 LIBRARY_DEFINE-a+=$(LIBBB_DEFINE-y)
145
146 $(LIBBB_AR): $(LIBBB_OBJS) $(LIBBB_ALL_MOBJ)
147         $(do_ar)