source: MondoRescue/branches/stable/mindi-busybox/libbb/Makefile.in@ 821

Last change on this file since 821 was 821, checked in by Bruno Cornec, 18 years ago

Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)

File size: 5.2 KB
Line 
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
7ifndef $(LIBBB_DIR)
8LIBBB_DIR:=$(top_builddir)/libbb
9endif
10srcdir=$(top_srcdir)/libbb
11
12LIBBB-n:=
13LIBBB-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:
41LIBBB-$(CONFIG_FEATURE_SHADOWPASSWDS)+=pwd2spwd.c
42LIBBB-$(CONFIG_FEATURE_MOUNT_LOOP)+= loop.c
43LIBBB-$(CONFIG_LOSETUP)+= loop.c
44LIBBB-$(CONFIG_FEATURE_MTAB_SUPPORT)+= mtab.c
45LIBBB-$(CONFIG_PASSWD)+= pw_encrypt.c
46LIBBB-$(CONFIG_SULOGIN)+= pw_encrypt.c
47LIBBB-$(CONFIG_FEATURE_HTTPD_AUTH_MD5)+= pw_encrypt.c
48LIBBB-$(CONFIG_VLOCK)+= correct_password.c
49LIBBB-$(CONFIG_SU)+= correct_password.c
50LIBBB-$(CONFIG_LOGIN)+= correct_password.c
51LIBBB-$(CONFIG_DF)+= find_mount_point.c
52LIBBB-$(CONFIG_EJECT)+= find_mount_point.c
53
54LIBBB-y:=$(patsubst %,$(srcdir)/%,$(LIBBB-y))
55
56get-file-subparts = $(addsuffix .o,$(shell sed -n -e "s/^\#ifdef L_//p" ${1}))
57
58# 1:N objects
59LIBBB_MSRC0:=$(srcdir)/messages.c
60LIBBB_MOBJ0:=$(call get-file-subparts, ${LIBBB_MSRC0})
61LIBBB_MOBJ0:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ0))
62$(LIBBB_MOBJ0):$(LIBBB_MSRC0)
63 $(compile.c) -DL_$(notdir $*)
64
65LIBBB_MSRC1:=$(srcdir)/xfuncs.c
66LIBBB_MOBJ1:=$(call get-file-subparts, ${LIBBB_MSRC1})
67LIBBB_MOBJ1:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ1))
68$(LIBBB_MOBJ1):$(LIBBB_MSRC1)
69 $(compile.c) -DL_$(notdir $*)
70
71LIBBB_MSRC2:=$(srcdir)/printf.c
72LIBBB_MOBJ2:=$(call get-file-subparts, ${LIBBB_MSRC2})
73LIBBB_MOBJ2:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ2))
74$(LIBBB_MOBJ2):$(LIBBB_MSRC2)
75 $(compile.c) -DL_$(notdir $*)
76
77LIBBB_MSRC3:=$(srcdir)/xgetularg.c
78LIBBB_MOBJ3:=$(call get-file-subparts, ${LIBBB_MSRC3})
79LIBBB_MOBJ3:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ3))
80$(LIBBB_MOBJ3):$(LIBBB_MSRC3)
81 $(compile.c) -DL_$(notdir $*)
82
83LIBBB_MSRC4:=$(srcdir)/safe_strtol.c
84LIBBB_MOBJ4:=$(call get-file-subparts, ${LIBBB_MSRC4})
85LIBBB_MOBJ4:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ4))
86$(LIBBB_MOBJ4):$(LIBBB_MSRC4)
87 $(compile.c) -DL_$(notdir $*)
88
89LIBBB_MSRC5:=$(srcdir)/bb_pwd.c
90LIBBB_MOBJ5:=$(call get-file-subparts, ${LIBBB_MSRC5})
91LIBBB_MOBJ5:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ5))
92$(LIBBB_MOBJ5):$(LIBBB_MSRC5)
93 $(compile.c) -DL_$(notdir $*)
94
95LIBBB_MSRC6:=$(srcdir)/llist.c
96LIBBB_MOBJ6:=$(call get-file-subparts, ${LIBBB_MSRC6})
97LIBBB_MOBJ6:=$(patsubst %,$(LIBBB_DIR)/%, $(LIBBB_MOBJ6))
98$(LIBBB_MOBJ6):$(LIBBB_MSRC6)
99 $(compile.c) -DL_$(notdir $*)
100
101LIBBB_MSRC7:=$(srcdir)/opendir.c
102LIBBB_MOBJ7:=$(call get-file-subparts, ${LIBBB_MSRC7})
103LIBBB_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
108LIBBB_ALL_MOBJ:=$(LIBBB_MOBJ0) $(LIBBB_MOBJ1) $(LIBBB_MOBJ2) $(LIBBB_MOBJ3) \
109 $(LIBBB_MOBJ4) $(LIBBB_MOBJ5) $(LIBBB_MOBJ6) $(LIBBB_MOBJ7)
110
111LIBBB_ALL_MSRC:=$(LIBBB_MSRC0) $(LIBBB_MSRC1) $(LIBBB_MSRC2) $(LIBBB_MSRC3) \
112 $(LIBBB_MSRC4) $(LIBBB_MSRC5) $(LIBBB_MSRC6) $(LIBBB_MSRC7)
113
114LIBBB-y:=$(sort $(LIBBB-y) $(LIBBB_ALL_MSRC))
115
116LIBBB_AR:=$(LIBBB_DIR)/libbb.a
117libraries-y+=$(LIBBB_AR)
118
119needcrypt-y:=
120ifneq ($(filter $(srcdir)/pw_encrypt.c,$(LIBBB-y)),)
121needcrypt-y:=y
122else
123ifneq ($(filter $(srcdir)/correct_password.c,$(LIBBB-y)),)
124needcrypt-y:=y
125endif
126endif
127
128ifeq ($(needcrypt-y),y)
129 LIBRARIES := -lcrypt $(filter-out -lcrypt,$(LIBRARIES))
130endif
131
132# all 1:1 objects
133LIBBB_OBJS:=$(patsubst $(srcdir)/%.c,$(LIBBB_DIR)/%.o, $(LIBBB-y))
134$(LIBBB_DIR)/%.o: $(srcdir)/%.c
135 $(compile.c)
136
137LIBBB_SRC-a:=$(wildcard $(srcdir)/*.c)
138LIBRARY_SRC-y+=$(LIBBB-y)
139LIBRARY_SRC-a+=$(LIBBB_SRC-a)
140
141# all defines needed for 1:N objects
142LIBBB_DEFINE-y:=$(patsubst %,-DL_%,$(subst .o,,$(notdir $(LIBBB_ALL_MOBJ))))
143LIBRARY_DEFINE-y+=$(LIBBB_DEFINE-y)
144LIBRARY_DEFINE-a+=$(LIBBB_DEFINE-y)
145
146$(LIBBB_AR): $(LIBBB_OBJS) $(LIBBB_ALL_MOBJ)
147 $(do_ar)
Note: See TracBrowser for help on using the repository browser.