source: trunk/essentials/app-shells/bash/lib/sh/Makefile.in

Last change on this file was 3254, checked in by bird, 18 years ago

VPATH

File size: 16.7 KB
Line 
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
21PACKAGE = @PACKAGE_NAME@
22VERSION = @PACKAGE_VERSION@
23
24PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
25PACKAGE_NAME = @PACKAGE_NAME@
26PACKAGE_STRING = @PACKAGE_STRING@
27PACKAGE_VERSION = @PACKAGE_VERSION@
28
29srcdir = @srcdir@
30VPATH = .;@srcdir@
31topdir = @top_srcdir@
32BUILD_DIR = @BUILD_DIR@
33
34LIBBUILD = ${BUILD_DIR}/lib
35
36BASHINCDIR = ${topdir}/include
37
38INTL_LIBSRC = ${topdir}/lib/intl
39INTL_BUILDDIR = ${LIBBUILD}/intl
40INTL_INC = @INTL_INC@
41LIBINTL_H = @LIBINTL_H@
42
43INSTALL = @INSTALL@
44INSTALL_PROGRAM = @INSTALL_PROGRAM@
45INSTALL_DATA = @INSTALL_DATA@
46
47CC = @CC@
48RANLIB = @RANLIB@
49AR = @AR@
50ARFLAGS = @ARFLAGS@
51RM = rm -f
52CP = cp
53MV = mv
54
55SHELL = @MAKE_SHELL@
56
57CFLAGS = @CFLAGS@
58LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
59CPPFLAGS = @CPPFLAGS@
60LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@
61
62PROFILE_FLAGS = @PROFILE_FLAGS@
63
64DEFS = @DEFS@
65LOCAL_DEFS = @LOCAL_DEFS@
66
67INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(BASHINCDIR) -I$(srcdir) $(INTL_INC)
68
69CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \
70 $(CFLAGS) $(CPPFLAGS)
71
72GCC_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.
80LIBRARY_NAME = libsh.a
81
82# The C code source files for this library.
83CSOURCES = 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.
94HSOURCES =
95
96# The object files contained in $(LIBRARY_NAME)
97LIBOBJS = @LIBOBJS@
98OBJECTS = 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
105SUPPORT = Makefile
106
107all: $(LIBRARY_NAME)
108
109$(LIBRARY_NAME): $(OBJECTS)
110 $(RM) $@
111 $(AR) $(ARFLAGS) $@ $(OBJECTS)
112 -test -n "$(RANLIB)" && $(RANLIB) $@
113
114force:
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.
119install:
120
121clean:
122 $(RM) $(OBJECTS) $(LIBRARY_NAME)
123
124realclean distclean maintainer-clean: clean
125 $(RM) Makefile
126
127mostlyclean: 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
135clktck.o: clktck.c
136clock.o: clock.c
137fmtullong.o: fmtullong.c
138fmtulong.o: fmtulong.c
139fmtumax.o: fmtumax.c
140getcwd.o: getcwd.c
141getenv.o: getenv.c
142inet_aton.o: inet_aton.c
143itos.o: itos.c
144mailstat.o: mailstat.c
145makepath.o: makepath.c
146memset.o: memset.c
147mktime.o: mktime.c
148netconn.o: netconn.c
149netopen.o: netopen.c
150oslib.o: oslib.c
151pathcanon.o: pathcanon.c
152pathphys.o: pathphys.c
153rename.o: rename.c
154setlinebuf.o: setlinebuf.c
155shquote.o: shquote.c
156shtty.o: shtty.c
157snprintf.o: snprintf.c
158spell.o: spell.c
159strcasecmp.o: strcasecmp.c
160strerror.o: strerror.c
161strftime.o: strftime.c
162strindex.o: strindex.c
163stringlist.o: stringlist.c
164stringvec.o: stringvec.c
165strnlen.o: strnlen.c
166strpbrk.o: strpbrk.c
167strtod.o: strtod.c
168strtoimax.o: strtoimax.c
169strtol.o: strtol.c
170strtoll.o: strtoll.c
171strtoul.o: strtoul.c
172strtoull.o: strtoull.c
173strtoumax.o: strtoumax.c
174strtrans.o: strtrans.c
175times.o: times.c
176timeval.o: timeval.c
177tmpfile.o: tmpfile.c
178vprint.o: vprint.c
179xstrchr.o: xstrchr.c
180zcatfd.o: zcatfd.c
181zread.o: zread.c
182zwrite.o: zwrite.c
183
184# dependencies for c files that include other c files
185fmtullong.o: fmtulong.c
186fmtumax.o: fmtulong.c
187strtoll.o: strtol.c
188strtoul.o: strtol.c
189strtoull.o: strtol.c
190
191# all files in the library depend on config.h
192clktck.o: ${BUILD_DIR}/config.h
193clock.o: ${BUILD_DIR}/config.h
194fmtullong.o: ${BUILD_DIR}/config.h
195fmtulong.o: ${BUILD_DIR}/config.h
196fmtumax.o: ${BUILD_DIR}/config.h
197getcwd.o: ${BUILD_DIR}/config.h
198getenv.o: ${BUILD_DIR}/config.h
199inet_aton.o: ${BUILD_DIR}/config.h
200itos.o: ${BUILD_DIR}/config.h
201mailstat.o: ${BUILD_DIR}/config.h
202makepath.o: ${BUILD_DIR}/config.h
203memset.o: ${BUILD_DIR}/config.h
204mktime.o: ${BUILD_DIR}/config.h
205netconn.o: ${BUILD_DIR}/config.h
206netopen.o: ${BUILD_DIR}/config.h
207oslib.o: ${BUILD_DIR}/config.h
208pathcanon.o: ${BUILD_DIR}/config.h
209pathphys.o: ${BUILD_DIR}/config.h
210rename.o: ${BUILD_DIR}/config.h
211setlinebuf.o: ${BUILD_DIR}/config.h
212shquote.o: ${BUILD_DIR}/config.h
213shtty.o: ${BUILD_DIR}/config.h
214snprintf.o: ${BUILD_DIR}/config.h
215spell.o: ${BUILD_DIR}/config.h
216strcasecmp.o: ${BUILD_DIR}/config.h
217strerror.o: ${BUILD_DIR}/config.h
218strftime.o: ${BUILD_DIR}/config.h
219strindex.o: ${BUILD_DIR}/config.h
220stringlist.o: ${BUILD_DIR}/config.h
221stringvec.o: ${BUILD_DIR}/config.h
222strnlen.o: ${BUILD_DIR}/config.h
223strpbrk.o: ${BUILD_DIR}/config.h
224strtod.o: ${BUILD_DIR}/config.h
225strtoimax.o: ${BUILD_DIR}/config.h
226strtol.o: ${BUILD_DIR}/config.h
227strtoll.o: ${BUILD_DIR}/config.h
228strtoul.o: ${BUILD_DIR}/config.h
229strtoull.o: ${BUILD_DIR}/config.h
230strtoumax.o: ${BUILD_DIR}/config.h
231strtrans.o: ${BUILD_DIR}/config.h
232times.o: ${BUILD_DIR}/config.h
233timeval.o: ${BUILD_DIR}/config.h
234tmpfile.o: ${BUILD_DIR}/config.h
235vprint.o: ${BUILD_DIR}/config.h
236xstrchr.o: ${BUILD_DIR}/config.h
237zcatfd.o: ${BUILD_DIR}/config.h
238zread.o: ${BUILD_DIR}/config.h
239zwrite.o: ${BUILD_DIR}/config.h
240
241clktck.o: ${topdir}/bashtypes.h
242
243getcwd.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
244getcwd.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
245getcwd.o: ${BASHINCDIR}/memalloc.h ${BASHINCDIR}/ansi_stdlib.h
246
247getenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
248getenv.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
249getenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
250getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
251getenv.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
252getenv.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
253getenv.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
254getenv.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h
255getenv.o: ${BUILD_DIR}/version.h
256
257inet_aton.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
258inet_aton.o: ${BASHINCDIR}/stdc.h
259
260itos.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
261itos.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
262itos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
263itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
264itos.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
265itos.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
266itos.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
267itos.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
268
269makepath.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
270makepath.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
271makepath.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
272makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
273makepath.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
274makepath.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
275makepath.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
276makepath.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
277
278netconn.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
279netconn.o: ${topdir}/bashtypes.h
280
281netopen.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
282netopen.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
283netopen.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
284netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
285netopen.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
286netopen.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
287netopen.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
288netopen.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
289netopen.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
290
291oslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
292oslib.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
293oslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
294oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
295oslib.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
296oslib.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
297oslib.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
298oslib.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
299oslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
300oslib.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
301
302pathcanon.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
303pathcanon.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
304pathcanon.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
305pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
306pathcanon.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
307pathcanon.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
308pathcanon.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
309pathcanon.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
310pathcanon.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
311pathcanon.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
312
313pathphys.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
314pathphys.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
315pathphys.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
316pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
317pathphys.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
318pathphys.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
319pathphys.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
320pathphys.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
321pathphys.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
322pathphys.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
323
324rename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.h
325rename.o: ${BASHINCDIR}/posixstat.h
326
327setlinebuf.o: ${topdir}/xmalloc.h ${topdir}/bashansi.h
328setlinebuf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/stdc.h
329
330shquote.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
331shquote.o: ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
332
333shtty.o: ${BASHINCDIR}/shtty.h
334shtty.o: ${BASHINCDIR}/stdc.h
335
336snprintf.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h ${topdir}/xmalloc.h
337snprintf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
338snprintf.o: ${BASHINCDIR}/typemax.h
339
340spell.o: ${topdir}/bashtypes.h
341spell.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
342spell.o: ${BASHINCDIR}/ansi_stdlib.h
343
344strcasecmp.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
345strcasecmp.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
346
347strerror.o: ${topdir}/bashtypes.h
348strerror.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
349strerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
350strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
351strerror.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
352strerror.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
353strerror.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
354strerror.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
355
356strindex.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
357strindex.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
358
359stringlist.o: ${topdir}/bashansi.h
360stringlist.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
361stringlist.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
362stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
363stringlist.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
364stringlist.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
365stringlist.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
366stringlist.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
367
368stringvec.o: ${topdir}/bashansi.h ${BASHINCDIR}/chartypes.h
369stringvec.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
370stringvec.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
371stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
372stringvec.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
373stringvec.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
374stringvec.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
375stringvec.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
376
377strnlen.o: ${BASHINCDIR}/stdc.h
378
379strpbrk.o: ${BASHINCDIR}/stdc.h
380
381strtod.o: ${topdir}/bashansi.h
382strtod.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
383
384strtoimax.o: ${BASHINCDIR}/stdc.h
385
386strtol.o: ${topdir}/bashansi.h
387strtol.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
388strtol.o: ${BASHINCDIR}/typemax.h
389
390strtoll.o: ${topdir}/bashansi.h
391strtoll.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
392strtoll.o: ${BASHINCDIR}/typemax.h
393
394strtoul.o: ${topdir}/bashansi.h
395strtoul.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
396strtoul.o: ${BASHINCDIR}/typemax.h
397
398strtoull.o: ${topdir}/bashansi.h
399strtoull.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
400strtoull.o: ${BASHINCDIR}/typemax.h
401
402strtoumax.o: ${BASHINCDIR}/stdc.h
403
404strtrans.o: ${topdir}/bashansi.h
405strtrans.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
406strtrans.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
407strtrans.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
408strtrans.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
409strtrans.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
410strtrans.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
411strtrans.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
412strtrans.o: ${BUILD_DIR}/pathnames.h ${topdir}/externs.h ${BUILD_DIR}/version.h
413
414times.o: ${BASHINCDIR}/systimes.h
415times.o: ${BASHINCDIR}/posixtime.h
416
417timeval.o: ${BASHINCDIR}/posixtime.h
418
419tmpfile.o: ${topdir}/bashtypes.h
420tmpfile.o: ${BASHINCDIR}/posixstat.h
421tmpfile.o: ${BASHINCDIR}/filecntl.h
422
423clock.o: ${BASHINCDIR}/posixtime.h
424
425mailstat.o: ${topdir}/bashansi.h
426mailstat.o: ${topdir}/bashtypes.h
427mailstat.o: ${BASHINCDIR}/ansi_stdlib.h
428mailstat.o: ${BASHINCDIR}/posixstat.h
429mailstat.o: ${BASHINCDIR}/posixdir.h
430mailstat.o: ${BASHINCDIR}/maxpath.h
431
432fmtulong.o: ${topdir}/bashansi.h
433fmtulong.o: ${BASHINCDIR}/ansi_stdlib.h
434fmtulong.o: ${BASHINCDIR}/chartypes.h
435fmtulong.o: ${BASHINCDIR}/stdc.h
436fmtulong.o: ${BASHINCDIR}/typemax.h
437fmtulong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
438
439fmtullong.o: ${topdir}/bashansi.h
440fmtullong.o: ${BASHINCDIR}/ansi_stdlib.h
441fmtullong.o: ${BASHINCDIR}/chartypes.h
442fmtullong.o: ${BASHINCDIR}/stdc.h
443fmtullong.o: ${BASHINCDIR}/typemax.h
444fmtullong.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
445
446fmtumax.o: ${topdir}/bashansi.h
447fmtumax.o: ${BASHINCDIR}/ansi_stdlib.h
448fmtumax.o: ${BASHINCDIR}/chartypes.h
449fmtumax.o: ${BASHINCDIR}/stdc.h
450fmtumax.o: ${BASHINCDIR}/typemax.h
451fmtumax.o: ${topdir}/bashintl.h ${LIBINTL_H} ${BASHINCDIR}/gettext.h
452
453xstrchr.o: ${topdir}/bashansi.h
454xstrchr.o: ${BASHINCDIR}/ansi_stdlib.h
455xstrchr.o: ${BASHINCDIR}/shmbutil.h
Note: See TracBrowser for help on using the repository browser.