1 | #
|
---|
2 | # Makefile for the Bash library
|
---|
3 | #
|
---|
4 | #
|
---|
5 | # Copyright (C) 1998-2005 Free Software Foundation, Inc.
|
---|
6 |
|
---|
7 | # This program is free software; you can redistribute it and/or modify
|
---|
8 | # it under the terms of the GNU General Public License as published by
|
---|
9 | # the Free Software Foundation; either version 2, or (at your option)
|
---|
10 | # any later version.
|
---|
11 |
|
---|
12 | # This program is distributed in the hope that it will be useful,
|
---|
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
15 | # GNU General Public License for more details.
|
---|
16 |
|
---|
17 | # You should have received a copy of the GNU General Public License
|
---|
18 | # along with this program; if not, write to the Free Software
|
---|
19 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
---|
20 |
|
---|
21 | PACKAGE = @PACKAGE_NAME@
|
---|
22 | VERSION = @PACKAGE_VERSION@
|
---|
23 |
|
---|
24 | PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
---|
25 | PACKAGE_NAME = @PACKAGE_NAME@
|
---|
26 | PACKAGE_STRING = @PACKAGE_STRING@
|
---|
27 | PACKAGE_VERSION = @PACKAGE_VERSION@
|
---|
28 |
|
---|
29 | srcdir = @srcdir@
|
---|
30 | VPATH = .;@srcdir@
|
---|
31 | topdir = @top_srcdir@
|
---|
32 | BUILD_DIR = @BUILD_DIR@
|
---|
33 |
|
---|
34 | LIBBUILD = ${BUILD_DIR}/lib
|
---|
35 |
|
---|
36 | BASHINCDIR = ${topdir}/include
|
---|
37 |
|
---|
38 | INTL_LIBSRC = ${topdir}/lib/intl
|
---|
39 | INTL_BUILDDIR = ${LIBBUILD}/intl
|
---|
40 | INTL_INC = @INTL_INC@
|
---|
41 | LIBINTL_H = @LIBINTL_H@
|
---|
42 |
|
---|
43 | INSTALL = @INSTALL@
|
---|
44 | INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
---|
45 | INSTALL_DATA = @INSTALL_DATA@
|
---|
46 |
|
---|
47 | CC = @CC@
|
---|
48 | RANLIB = @RANLIB@
|
---|
49 | AR = @AR@
|
---|
50 | ARFLAGS = @ARFLAGS@
|
---|
51 | RM = rm -f
|
---|
52 | CP = cp
|
---|
53 | MV = mv
|
---|
54 |
|
---|
55 | SHELL = @MAKE_SHELL@
|
---|
56 |
|
---|
57 | CFLAGS = @CFLAGS@
|
---|
58 | LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
|
---|
59 | CPPFLAGS = @CPPFLAGS@
|
---|
60 | LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@
|
---|
61 |
|
---|
62 | PROFILE_FLAGS = @PROFILE_FLAGS@
|
---|
63 |
|
---|
64 | DEFS = @DEFS@
|
---|
65 | LOCAL_DEFS = @LOCAL_DEFS@
|
---|
66 |
|
---|
67 | INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(BASHINCDIR) -I$(srcdir) $(INTL_INC)
|
---|
68 |
|
---|
69 | CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \
|
---|
70 | $(CFLAGS) $(CPPFLAGS)
|
---|
71 |
|
---|
72 | GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
|
---|
73 | -Wcast-align -Wstrict-prototypes -Wconversion \
|
---|
74 | -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
|
---|
75 |
|
---|
76 | .c.o:
|
---|
77 | $(CC) -c $(CCFLAGS) $<
|
---|
78 |
|
---|
79 | # The name of the library target.
|
---|
80 | LIBRARY_NAME = libsh.a
|
---|
81 |
|
---|
82 | # The C code source files for this library.
|
---|
83 | CSOURCES = clktck.c clock.c getcwd.c getenv.c oslib.c setlinebuf.c \
|
---|
84 | strcasecmp.c strerror.c strtod.c strtol.c strtoul.c \
|
---|
85 | vprint.c itos.c rename.c zread.c zwrite.c shtty.c \
|
---|
86 | inet_aton.c netconn.c netopen.c strpbrk.c timeval.c makepath.c \
|
---|
87 | pathcanon.c pathphys.c tmpfile.c stringlist.c stringvec.c spell.c \
|
---|
88 | shquote.c strtrans.c strindex.c snprintf.c mailstat.c \
|
---|
89 | fmtulong.c fmtullong.c fmtumax.c shmatch.c strnlen.c \
|
---|
90 | strtoll.c strtoull.c strtoimax.c strtoumax.c memset.c strstr.c \
|
---|
91 | mktime.c strftime.c xstrchr.c zcatfd.c winsize.c
|
---|
92 |
|
---|
93 | # The header files for this library.
|
---|
94 | HSOURCES =
|
---|
95 |
|
---|
96 | # The object files contained in $(LIBRARY_NAME)
|
---|
97 | LIBOBJS = @LIBOBJS@
|
---|
98 | OBJECTS = clktck.o clock.o getenv.o oslib.o setlinebuf.o strnlen.o \
|
---|
99 | itos.o zread.o zwrite.o shtty.o shmatch.o \
|
---|
100 | netconn.o netopen.o timeval.o makepath.o pathcanon.o \
|
---|
101 | pathphys.o tmpfile.o stringlist.o stringvec.o spell.o shquote.o \
|
---|
102 | strtrans.o strindex.o snprintf.o mailstat.o fmtulong.o \
|
---|
103 | fmtullong.o fmtumax.o xstrchr.o zcatfd.o winsize.o ${LIBOBJS}
|
---|
104 |
|
---|
105 | SUPPORT = Makefile
|
---|
106 |
|
---|
107 | all: $(LIBRARY_NAME)
|
---|
108 |
|
---|
109 | $(LIBRARY_NAME): $(OBJECTS)
|
---|
110 | $(RM) $@
|
---|
111 | $(AR) $(ARFLAGS) $@ $(OBJECTS)
|
---|
112 | -test -n "$(RANLIB)" && $(RANLIB) $@
|
---|
113 |
|
---|
114 | force:
|
---|
115 |
|
---|
116 | # The rule for 'includes' is written funny so that the if statement
|
---|
117 | # always returns TRUE unless there really was an error installing the
|
---|
118 | # include files.
|
---|
119 | install:
|
---|
120 |
|
---|
121 | clean:
|
---|
122 | $(RM) $(OBJECTS) $(LIBRARY_NAME)
|
---|
123 |
|
---|
124 | realclean distclean maintainer-clean: clean
|
---|
125 | $(RM) Makefile
|
---|
126 |
|
---|
127 | mostlyclean: clean
|
---|
128 |
|
---|
129 | # Dependencies
|
---|
130 |
|
---|
131 | ${BUILD_DIR}/version.h: ${BUILD_DIR}/config.h ${BUILD_DIR}/Makefile Makefile
|
---|
132 | -( cd ${BUILD_DIR} && ${MAKE} ${MFLAGS} version.h )
|
---|
133 |
|
---|
134 | # rules for losing makes, like SunOS
|
---|
135 | clktck.o: clktck.c
|
---|
136 | clock.o: clock.c
|
---|
137 | fmtullong.o: fmtullong.c
|
---|
138 | fmtulong.o: fmtulong.c
|
---|
139 | fmtumax.o: fmtumax.c
|
---|
140 | getcwd.o: getcwd.c
|
---|
141 | getenv.o: getenv.c
|
---|
142 | inet_aton.o: inet_aton.c
|
---|
143 | itos.o: itos.c
|
---|
144 | mailstat.o: mailstat.c
|
---|
145 | makepath.o: makepath.c
|
---|
146 | memset.o: memset.c
|
---|
147 | mktime.o: mktime.c
|
---|
148 | netconn.o: netconn.c
|
---|
149 | netopen.o: netopen.c
|
---|
150 | oslib.o: oslib.c
|
---|
151 | pathcanon.o: pathcanon.c
|
---|
152 | pathphys.o: pathphys.c
|
---|
153 | rename.o: rename.c
|
---|
154 | setlinebuf.o: setlinebuf.c
|
---|
155 | shquote.o: shquote.c
|
---|
156 | shtty.o: shtty.c
|
---|
157 | snprintf.o: snprintf.c
|
---|
158 | spell.o: spell.c
|
---|
159 | strcasecmp.o: strcasecmp.c
|
---|
160 | strerror.o: strerror.c
|
---|
161 | strftime.o: strftime.c
|
---|
162 | strindex.o: strindex.c
|
---|
163 | stringlist.o: stringlist.c
|
---|
164 | stringvec.o: stringvec.c
|
---|
165 | strnlen.o: strnlen.c
|
---|
166 | strpbrk.o: strpbrk.c
|
---|
167 | strtod.o: strtod.c
|
---|
168 | strtoimax.o: strtoimax.c
|
---|
169 | strtol.o: strtol.c
|
---|
170 | strtoll.o: strtoll.c
|
---|
171 | strtoul.o: strtoul.c
|
---|
172 | strtoull.o: strtoull.c
|
---|
173 | strtoumax.o: strtoumax.c
|
---|
174 | strtrans.o: strtrans.c
|
---|
175 | times.o: times.c
|
---|
176 | timeval.o: timeval.c
|
---|
177 | tmpfile.o: tmpfile.c
|
---|
178 | vprint.o: vprint.c
|
---|
179 | xstrchr.o: xstrchr.c
|
---|
180 | zcatfd.o: zcatfd.c
|
---|
181 | zread.o: zread.c
|
---|
182 | zwrite.o: zwrite.c
|
---|
183 |
|
---|
184 | # dependencies for c files that include other c files
|
---|
185 | fmtullong.o: fmtulong.c
|
---|
186 | fmtumax.o: fmtulong.c
|
---|
187 | strtoll.o: strtol.c
|
---|
188 | strtoul.o: strtol.c
|
---|
189 | strtoull.o: strtol.c
|
---|
190 |
|
---|
191 | # all files in the library depend on config.h
|
---|
192 | clktck.o: ${BUILD_DIR}/config.h
|
---|
193 | clock.o: ${BUILD_DIR}/config.h
|
---|
194 | fmtullong.o: ${BUILD_DIR}/config.h
|
---|
195 | fmtulong.o: ${BUILD_DIR}/config.h
|
---|
196 | fmtumax.o: ${BUILD_DIR}/config.h
|
---|
197 | getcwd.o: ${BUILD_DIR}/config.h
|
---|
198 | getenv.o: ${BUILD_DIR}/config.h
|
---|
199 | inet_aton.o: ${BUILD_DIR}/config.h
|
---|
200 | itos.o: ${BUILD_DIR}/config.h
|
---|
201 | mailstat.o: ${BUILD_DIR}/config.h
|
---|
202 | makepath.o: ${BUILD_DIR}/config.h
|
---|
203 | memset.o: ${BUILD_DIR}/config.h
|
---|
204 | mktime.o: ${BUILD_DIR}/config.h
|
---|
205 | netconn.o: ${BUILD_DIR}/config.h
|
---|
206 | netopen.o: ${BUILD_DIR}/config.h
|
---|
207 | oslib.o: ${BUILD_DIR}/config.h
|
---|
208 | pathcanon.o: ${BUILD_DIR}/config.h
|
---|
209 | pathphys.o: ${BUILD_DIR}/config.h
|
---|
210 | rename.o: ${BUILD_DIR}/config.h
|
---|
211 | setlinebuf.o: ${BUILD_DIR}/config.h
|
---|
212 | shquote.o: ${BUILD_DIR}/config.h
|
---|
213 | shtty.o: ${BUILD_DIR}/config.h
|
---|
214 | snprintf.o: ${BUILD_DIR}/config.h
|
---|
215 | spell.o: ${BUILD_DIR}/config.h
|
---|
216 | strcasecmp.o: ${BUILD_DIR}/config.h
|
---|
217 | strerror.o: ${BUILD_DIR}/config.h
|
---|
218 | strftime.o: ${BUILD_DIR}/config.h
|
---|
219 | strindex.o: ${BUILD_DIR}/config.h
|
---|
220 | stringlist.o: ${BUILD_DIR}/config.h
|
---|
221 | stringvec.o: ${BUILD_DIR}/config.h
|
---|
222 | strnlen.o: ${BUILD_DIR}/config.h
|
---|
223 | strpbrk.o: ${BUILD_DIR}/config.h
|
---|
224 | strtod.o: ${BUILD_DIR}/config.h
|
---|
225 | strtoimax.o: ${BUILD_DIR}/config.h
|
---|
226 | strtol.o: ${BUILD_DIR}/config.h
|
---|
227 | strtoll.o: ${BUILD_DIR}/config.h
|
---|
228 | strtoul.o: ${BUILD_DIR}/config.h
|
---|
229 | strtoull.o: ${BUILD_DIR}/config.h
|
---|
230 | strtoumax.o: ${BUILD_DIR}/config.h
|
---|
231 | strtrans.o: ${BUILD_DIR}/config.h
|
---|
232 | times.o: ${BUILD_DIR}/config.h
|
---|
233 | timeval.o: ${BUILD_DIR}/config.h
|
---|
234 | tmpfile.o: ${BUILD_DIR}/config.h
|
---|
235 | vprint.o: ${BUILD_DIR}/config.h
|
---|
236 | xstrchr.o: ${BUILD_DIR}/config.h
|
---|
237 | zcatfd.o: ${BUILD_DIR}/config.h
|
---|
238 | zread.o: ${BUILD_DIR}/config.h
|
---|
239 | zwrite.o: ${BUILD_DIR}/config.h
|
---|
240 |
|
---|
241 | clktck.o: ${topdir}/bashtypes.h
|
---|
242 |
|
---|
243 | getcwd.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
|
---|
244 | getcwd.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
|
---|
245 | getcwd.o: ${BASHINCDIR}/memalloc.h ${BASHINCDIR}/ansi_stdlib.h
|
---|
246 |
|
---|
247 | getenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
|
---|
248 | getenv.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
249 | getenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
250 | getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
251 | getenv.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
252 | getenv.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
253 | getenv.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
254 | getenv.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
|
---|
255 | getenv.o: ${BUILD_DIR}/version.h
|
---|
256 |
|
---|
257 | inet_aton.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
|
---|
258 | inet_aton.o: ${BASHINCDIR}/stdc.h
|
---|
259 |
|
---|
260 | itos.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
|
---|
261 | itos.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
262 | itos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
263 | itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
264 | itos.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
265 | itos.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
266 | itos.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
267 | itos.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
268 |
|
---|
269 | makepath.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
|
---|
270 | makepath.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
271 | makepath.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
272 | makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
273 | makepath.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
274 | makepath.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
275 | makepath.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
276 | makepath.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
277 |
|
---|
278 | netconn.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
|
---|
279 | netconn.o: ${topdir}/bashtypes.h
|
---|
280 |
|
---|
281 | netopen.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
|
---|
282 | netopen.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
283 | netopen.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
284 | netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
285 | netopen.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
286 | netopen.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
287 | netopen.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
288 | netopen.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
289 | netopen.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
---|
290 |
|
---|
291 | oslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
|
---|
292 | oslib.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
293 | oslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
294 | oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
295 | oslib.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
296 | oslib.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
297 | oslib.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
298 | oslib.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
299 | oslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
|
---|
300 | oslib.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
301 |
|
---|
302 | pathcanon.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
|
---|
303 | pathcanon.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
304 | pathcanon.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
305 | pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
306 | pathcanon.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
307 | pathcanon.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
308 | pathcanon.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
309 | pathcanon.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
310 | pathcanon.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
|
---|
311 | pathcanon.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
312 |
|
---|
313 | pathphys.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
|
---|
314 | pathphys.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
315 | pathphys.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
316 | pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
317 | pathphys.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
318 | pathphys.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
319 | pathphys.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
320 | pathphys.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
321 | pathphys.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
|
---|
322 | pathphys.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
323 |
|
---|
324 | rename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.h
|
---|
325 | rename.o: ${BASHINCDIR}/posixstat.h
|
---|
326 |
|
---|
327 | setlinebuf.o: ${topdir}/xmalloc.h ${topdir}/bashansi.h
|
---|
328 | setlinebuf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/stdc.h
|
---|
329 |
|
---|
330 | shquote.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
|
---|
331 | shquote.o: ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
|
---|
332 |
|
---|
333 | shtty.o: ${BASHINCDIR}/shtty.h
|
---|
334 | shtty.o: ${BASHINCDIR}/stdc.h
|
---|
335 |
|
---|
336 | snprintf.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h ${topdir}/xmalloc.h
|
---|
337 | snprintf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
338 | snprintf.o: ${BASHINCDIR}/typemax.h
|
---|
339 |
|
---|
340 | spell.o: ${topdir}/bashtypes.h
|
---|
341 | spell.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
|
---|
342 | spell.o: ${BASHINCDIR}/ansi_stdlib.h
|
---|
343 |
|
---|
344 | strcasecmp.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
|
---|
345 | strcasecmp.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
346 |
|
---|
347 | strerror.o: ${topdir}/bashtypes.h
|
---|
348 | strerror.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
349 | strerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
350 | strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
351 | strerror.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
352 | strerror.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
353 | strerror.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
354 | strerror.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
355 |
|
---|
356 | strindex.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
|
---|
357 | strindex.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
358 |
|
---|
359 | stringlist.o: ${topdir}/bashansi.h
|
---|
360 | stringlist.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
361 | stringlist.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
362 | stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
363 | stringlist.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
364 | stringlist.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
365 | stringlist.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
366 | stringlist.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
367 |
|
---|
368 | stringvec.o: ${topdir}/bashansi.h ${BASHINCDIR}/chartypes.h
|
---|
369 | stringvec.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
370 | stringvec.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
371 | stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
372 | stringvec.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
373 | stringvec.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
374 | stringvec.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
375 | stringvec.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
376 |
|
---|
377 | strnlen.o: ${BASHINCDIR}/stdc.h
|
---|
378 |
|
---|
379 | strpbrk.o: ${BASHINCDIR}/stdc.h
|
---|
380 |
|
---|
381 | strtod.o: ${topdir}/bashansi.h
|
---|
382 | strtod.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
383 |
|
---|
384 | strtoimax.o: ${BASHINCDIR}/stdc.h
|
---|
385 |
|
---|
386 | strtol.o: ${topdir}/bashansi.h
|
---|
387 | strtol.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
388 | strtol.o: ${BASHINCDIR}/typemax.h
|
---|
389 |
|
---|
390 | strtoll.o: ${topdir}/bashansi.h
|
---|
391 | strtoll.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
392 | strtoll.o: ${BASHINCDIR}/typemax.h
|
---|
393 |
|
---|
394 | strtoul.o: ${topdir}/bashansi.h
|
---|
395 | strtoul.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
396 | strtoul.o: ${BASHINCDIR}/typemax.h
|
---|
397 |
|
---|
398 | strtoull.o: ${topdir}/bashansi.h
|
---|
399 | strtoull.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
400 | strtoull.o: ${BASHINCDIR}/typemax.h
|
---|
401 |
|
---|
402 | strtoumax.o: ${BASHINCDIR}/stdc.h
|
---|
403 |
|
---|
404 | strtrans.o: ${topdir}/bashansi.h
|
---|
405 | strtrans.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
|
---|
406 | strtrans.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
|
---|
407 | strtrans.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
|
---|
408 | strtrans.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
|
---|
409 | strtrans.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
|
---|
410 | strtrans.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
|
---|
411 | strtrans.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
|
---|
412 | strtrans.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
|
---|
413 |
|
---|
414 | times.o: ${BASHINCDIR}/systimes.h
|
---|
415 | times.o: ${BASHINCDIR}/posixtime.h
|
---|
416 |
|
---|
417 | timeval.o: ${BASHINCDIR}/posixtime.h
|
---|
418 |
|
---|
419 | tmpfile.o: ${topdir}/bashtypes.h
|
---|
420 | tmpfile.o: ${BASHINCDIR}/posixstat.h
|
---|
421 | tmpfile.o: ${BASHINCDIR}/filecntl.h
|
---|
422 |
|
---|
423 | clock.o: ${BASHINCDIR}/posixtime.h
|
---|
424 |
|
---|
425 | mailstat.o: ${topdir}/bashansi.h
|
---|
426 | mailstat.o: ${topdir}/bashtypes.h
|
---|
427 | mailstat.o: ${BASHINCDIR}/ansi_stdlib.h
|
---|
428 | mailstat.o: ${BASHINCDIR}/posixstat.h
|
---|
429 | mailstat.o: ${BASHINCDIR}/posixdir.h
|
---|
430 | mailstat.o: ${BASHINCDIR}/maxpath.h
|
---|
431 |
|
---|
432 | fmtulong.o: ${topdir}/bashansi.h
|
---|
433 | fmtulong.o: ${BASHINCDIR}/ansi_stdlib.h
|
---|
434 | fmtulong.o: ${BASHINCDIR}/chartypes.h
|
---|
435 | fmtulong.o: ${BASHINCDIR}/stdc.h
|
---|
436 | fmtulong.o: ${BASHINCDIR}/typemax.h
|
---|
437 | fmtulong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
|
---|
438 |
|
---|
439 | fmtullong.o: ${topdir}/bashansi.h
|
---|
440 | fmtullong.o: ${BASHINCDIR}/ansi_stdlib.h
|
---|
441 | fmtullong.o: ${BASHINCDIR}/chartypes.h
|
---|
442 | fmtullong.o: ${BASHINCDIR}/stdc.h
|
---|
443 | fmtullong.o: ${BASHINCDIR}/typemax.h
|
---|
444 | fmtullong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
|
---|
445 |
|
---|
446 | fmtumax.o: ${topdir}/bashansi.h
|
---|
447 | fmtumax.o: ${BASHINCDIR}/ansi_stdlib.h
|
---|
448 | fmtumax.o: ${BASHINCDIR}/chartypes.h
|
---|
449 | fmtumax.o: ${BASHINCDIR}/stdc.h
|
---|
450 | fmtumax.o: ${BASHINCDIR}/typemax.h
|
---|
451 | fmtumax.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
|
---|
452 |
|
---|
453 | xstrchr.o: ${topdir}/bashansi.h
|
---|
454 | xstrchr.o: ${BASHINCDIR}/ansi_stdlib.h
|
---|
455 | xstrchr.o: ${BASHINCDIR}/shmbutil.h
|
---|