126f5f82288e7be77f1196ef146da84f9acd11b8
[platform/upstream/bash.git] / lib / sh / Makefile.in
1 #
2 # Makefile for the Bash library
3 #
4 #
5 # Copyright (C) 1998 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 srcdir = @srcdir@
22 VPATH = .:@srcdir@
23 topdir = @top_srcdir@
24 BUILD_DIR = @BUILD_DIR@
25
26 BASHINCDIR = ${topdir}/include
27
28 INSTALL = @INSTALL@
29 INSTALL_PROGRAM = @INSTALL_PROGRAM@
30 INSTALL_DATA = @INSTALL_DATA@
31
32 CC = @CC@
33 RANLIB = @RANLIB@
34 AR = @AR@
35 ARFLAGS = @ARFLAGS@
36 RM = rm -f
37 CP = cp
38 MV = mv
39
40 SHELL = @MAKE_SHELL@
41
42 CFLAGS = @CFLAGS@
43 LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG}
44 CPPFLAGS = @CPPFLAGS@
45 LDFLAGS = @LDFLAGS@ @LOCAL_LDFLAGS@
46
47 PROFILE_FLAGS = @PROFILE_FLAGS@
48
49 DEFS = @DEFS@
50 LOCAL_DEFS = @LOCAL_DEFS@
51
52 INCLUDES = -I. -I../.. -I$(topdir) -I$(topdir)/lib -I$(BASHINCDIR) -I$(srcdir)
53
54 CCFLAGS = ${PROFILE_FLAGS} ${INCLUDES} $(DEFS) $(LOCAL_DEFS) $(LOCAL_CFLAGS) \
55           $(CFLAGS) $(CPPFLAGS) 
56
57 GCC_LINT_FLAGS = -Wall -Wshadow -Wpointer-arith -Wcast-qual \
58                  -Wcast-align -Wstrict-prototypes -Wconversion \
59                  -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic
60
61 .c.o:
62         $(CC) -c $(CCFLAGS) $<
63
64 # The name of the library target.
65 LIBRARY_NAME = libsh.a
66
67 # The C code source files for this library.
68 CSOURCES = clktck.c clock.c getcwd.c getenv.c oslib.c setlinebuf.c \
69            strcasecmp.c strerror.c strtod.c strtol.c strtoul.c \
70            vprint.c itos.c rename.c zread.c zwrite.c shtty.c \
71            inet_aton.c netopen.c strpbrk.c timeval.c makepath.c pathcanon.c \
72            pathphys.c tmpfile.c stringlist.c stringvec.c spell.c \
73            shquote.c strtrans.c strindex.c snprintf.c mailstat.c fmtulong.c \
74            fmtullong.c strtoll.c strtoull.c strtoimax.c strtoumax.c
75
76 # The header files for this library.
77 HSOURCES = 
78
79 # The object files contained in $(LIBRARY_NAME)
80 LIBOBJS = @LIBOBJS@
81 OBJECTS = clktck.o clock.o getenv.o oslib.o setlinebuf.o \
82           itos.o zread.o zwrite.o shtty.o \
83           netopen.o timeval.o makepath.o pathcanon.o \
84           pathphys.o tmpfile.o stringlist.o stringvec.o spell.o shquote.o \
85           strtrans.o strindex.o snprintf.o mailstat.o fmtulong.o \
86           fmtullong.o ${LIBOBJS}
87
88 SUPPORT = Makefile
89
90 all: $(LIBRARY_NAME)
91
92 $(LIBRARY_NAME): $(OBJECTS)
93         $(RM) $@
94         $(AR) $(ARFLAGS) $@ $(OBJECTS)
95         -test -n "$(RANLIB)" && $(RANLIB) $@
96
97 force:
98
99 # The rule for 'includes' is written funny so that the if statement
100 # always returns TRUE unless there really was an error installing the
101 # include files.
102 install:
103
104 clean:
105         $(RM) $(OBJECTS) $(LIBRARY_NAME)
106
107 realclean distclean maintainer-clean: clean
108         $(RM) Makefile
109
110 mostlyclean: clean
111
112 # Dependencies
113
114 # rules for losing makes, like SunOS
115 clktck.o: clktck.c
116 clock.o: clock.c
117 fmtullong.o: fmtullong.c
118 fmtulong.o: fmtulong.c
119 getcwd.o: getcwd.c
120 getenv.o: getenv.c
121 inet_aton.o: inet_aton.c
122 itos.o: itos.c
123 mailstat.o: mailstat.c
124 makepath.o: makepath.c
125 netopen.o: netopen.c
126 oslib.o: oslib.c
127 pathcanon.o: pathcanon.c
128 pathphys.o: pathphys.c
129 rename.o: rename.c
130 setlinebuf.o: setlinebuf.c
131 shquote.o: shquote.c
132 shtty.o: shtty.c
133 snprintf.o: snprintf.c
134 spell.o: spell.c
135 strcasecmp.o: strcasecmp.c
136 strerror.o: strerror.c
137 strindex.o: strindex.c
138 stringlist.o: stringlist.c
139 stringvec.o: stringvec.c
140 strpbrk.o: strpbrk.c
141 strtod.o: strtod.c
142 strtoimax.o: strtoimax.c
143 strtol.o: strtol.c
144 strtoll.o: strtoll.c
145 strtoul.o: strtoul.c
146 strtoull.o: strtoull.c
147 strtoumax.o: strtoumax.c
148 strtrans.o: strtrans.c
149 times.o: times.c
150 timeval.o: timeval.c
151 tmpfile.o: tmpfile.c
152 vprint.o: vprint.c
153 zread.o: zread.c
154 zwrite.o: zwrite.c
155
156 # dependencies for c files that include other c files
157 fmtullong.o: fmtulong.c
158 strtoll.o: strtol.c
159 strtoul.o: strtol.c
160 strtoull.o: strtol.c
161
162 # all files in the library depend on config.h
163 clktck.o: ${BUILD_DIR}/config.h
164 clock.o: ${BUILD_DIR}/config.h
165 fmtullong.o: ${BUILD_DIR}/config.h
166 fmtulong.o: ${BUILD_DIR}/config.h
167 getcwd.o: ${BUILD_DIR}/config.h
168 getenv.o: ${BUILD_DIR}/config.h
169 inet_aton.o: ${BUILD_DIR}/config.h
170 itos.o: ${BUILD_DIR}/config.h
171 mailstat.o: ${BUILD_DIR}/config.h
172 makepath.o: ${BUILD_DIR}/config.h
173 netopen.o: ${BUILD_DIR}/config.h
174 oslib.o: ${BUILD_DIR}/config.h
175 pathcanon.o: ${BUILD_DIR}/config.h
176 pathphys.o: ${BUILD_DIR}/config.h
177 rename.o: ${BUILD_DIR}/config.h
178 setlinebuf.o: ${BUILD_DIR}/config.h
179 shquote.o: ${BUILD_DIR}/config.h
180 shtty.o: ${BUILD_DIR}/config.h
181 snprintf.o: ${BUILD_DIR}/config.h
182 spell.o: ${BUILD_DIR}/config.h
183 strcasecmp.o: ${BUILD_DIR}/config.h
184 strerror.o: ${BUILD_DIR}/config.h
185 strindex.o: ${BUILD_DIR}/config.h
186 stringlist.o: ${BUILD_DIR}/config.h
187 stringvec.o: ${BUILD_DIR}/config.h
188 strpbrk.o: ${BUILD_DIR}/config.h
189 strtod.o: ${BUILD_DIR}/config.h
190 strtoimax.o: ${BUILD_DIR}/config.h
191 strtol.o: ${BUILD_DIR}/config.h
192 strtoll.o: ${BUILD_DIR}/config.h
193 strtoul.o: ${BUILD_DIR}/config.h
194 strtoull.o: ${BUILD_DIR}/config.h
195 strtoumax.o: ${BUILD_DIR}/config.h
196 strtrans.o: ${BUILD_DIR}/config.h
197 times.o: ${BUILD_DIR}/config.h
198 timeval.o: ${BUILD_DIR}/config.h
199 tmpfile.o: ${BUILD_DIR}/config.h
200 vprint.o: ${BUILD_DIR}/config.h
201 zread.o: ${BUILD_DIR}/config.h
202 zwrite.o: ${BUILD_DIR}/config.h
203
204 clktck.o: ${topdir}/bashtypes.h
205
206 getcwd.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
207 getcwd.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
208 getcwd.o: ${BASHINCDIR}/memalloc.h ${BASHINCDIR}/ansi_stdlib.h
209
210 getenv.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
211 getenv.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
212 getenv.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
213 getenv.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
214 getenv.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
215 getenv.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
216 getenv.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
217 getenv.o: ${topdir}/pathnames.h ${topdir}/externs.h
218
219 inet_aton.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
220 inet_aton.o: ${BASHINCDIR}/stdc.h
221
222 itos.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
223 itos.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
224 itos.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
225 itos.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
226 itos.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
227 itos.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
228 itos.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
229 itos.o: ${topdir}/pathnames.h ${topdir}/externs.h
230
231 makepath.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h
232 makepath.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
233 makepath.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
234 makepath.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
235 makepath.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
236 makepath.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
237 makepath.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
238 makepath.o: ${topdir}/pathnames.h ${topdir}/externs.h
239
240 netopen.o: ${topdir}/bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
241 netopen.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
242 netopen.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
243 netopen.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
244 netopen.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
245 netopen.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
246 netopen.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
247 netopen.o: ${topdir}/pathnames.h ${topdir}/externs.h
248
249 oslib.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
250 oslib.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
251 oslib.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
252 oslib.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
253 oslib.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
254 oslib.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
255 oslib.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
256 oslib.o: ${topdir}/pathnames.h ${topdir}/externs.h
257 oslib.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
258 oslib.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
259
260 pathcanon.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
261 pathcanon.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
262 pathcanon.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
263 pathcanon.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
264 pathcanon.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
265 pathcanon.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
266 pathcanon.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
267 pathcanon.o: ${topdir}/pathnames.h ${topdir}/externs.h
268 pathcanon.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
269 pathcanon.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
270
271 pathphys.o: ${topdir}/bashtypes.h ${topdir}/bashansi.h ${BASHINCDIR}/maxpath.h
272 pathphys.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
273 pathphys.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
274 pathphys.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
275 pathphys.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
276 pathphys.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
277 pathphys.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
278 pathphys.o: ${topdir}/pathnames.h ${topdir}/externs.h
279 pathphys.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h
280 pathphys.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
281
282 rename.o: ${topdir}/bashtypes.h ${BASHINCDIR}/stdc.h
283
284 setlinebuf.o: ${topdir}/xmalloc.h ${topdir}/bashansi.h
285 setlinebuf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/stdc.h
286
287 shquote.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
288 shquote.o: ${BASHINCDIR}/ansi_stdlib.h ${topdir}/xmalloc.h
289
290 shtty.o: ${BASHINCDIR}/shtty.h
291 shtty.o: ${BASHINCDIR}/stdc.h
292
293 snprintf.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h ${topdir}/xmalloc.h
294 snprintf.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
295 snprintf.o: ${BASHINCDIR}/typemax.h
296
297 spell.o: ${topdir}/bashtypes.h
298 spell.o: ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/posixdir.h
299 spell.o: ${BASHINCDIR}/ansi_stdlib.h
300
301 strcasecmp.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
302 strcasecmp.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
303
304 strerror.o: ${topdir}/bashtypes.h
305 strerror.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
306 strerror.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
307 strerror.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
308 strerror.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
309 strerror.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
310 strerror.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
311 strerror.o: ${topdir}/pathnames.h ${topdir}/externs.h
312
313 strindex.o: ${BASHINCDIR}/stdc.h ${topdir}/bashansi.h
314 strindex.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
315
316 stringlist.o: ${topdir}/bashansi.h
317 stringlist.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
318 stringlist.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
319 stringlist.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
320 stringlist.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
321 stringlist.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
322 stringlist.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
323 stringlist.o: ${topdir}/pathnames.h ${topdir}/externs.h
324
325 stringvec.o: ${topdir}/bashansi.h ${BASHINCDIR}/chartypes.h
326 stringvec.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
327 stringvec.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
328 stringvec.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
329 stringvec.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
330 stringvec.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
331 stringvec.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
332 stringvec.o: ${topdir}/pathnames.h ${topdir}/externs.h
333
334 strpbrk.o: ${BASHINCDIR}/stdc.h
335
336 strtod.o: ${topdir}/bashansi.h
337 strtod.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
338
339 strtoimax.o: ${BASHINCDIR}/stdc.h
340
341 strtol.o: ${topdir}/bashansi.h
342 strtol.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
343 strtol.o: ${BASHINCDIR}/typemax.h
344
345 strtoll.o: ${topdir}/bashansi.h
346 strtoll.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
347 strtoll.o: ${BASHINCDIR}/typemax.h
348
349 strtoul.o: ${topdir}/bashansi.h
350 strtoul.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
351 strtoul.o: ${BASHINCDIR}/typemax.h
352
353 strtoull.o: ${topdir}/bashansi.h
354 strtoull.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
355 strtoull.o: ${BASHINCDIR}/typemax.h
356
357 strtoumax.o: ${BASHINCDIR}/stdc.h
358
359 strtrans.o: ${topdir}/bashansi.h
360 strtrans.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/chartypes.h
361 strtrans.o: ${topdir}/shell.h ${topdir}/syntax.h ${topdir}/bashjmp.h ${BASHINCDIR}/posixjmp.h
362 strtrans.o: ${topdir}/command.h ${BASHINCDIR}/stdc.h ${topdir}/error.h
363 strtrans.o: ${topdir}/general.h ${topdir}/bashtypes.h ${topdir}/variables.h ${topdir}/conftypes.h
364 strtrans.o: ${topdir}/array.h ${topdir}/hashlib.h ${topdir}/quit.h
365 strtrans.o: ${topdir}/unwind_prot.h ${topdir}/dispose_cmd.h
366 strtrans.o: ${topdir}/make_cmd.h ${topdir}/subst.h ${topdir}/sig.h
367 strtrans.o: ${topdir}/pathnames.h ${topdir}/externs.h
368
369 times.o: ${BASHINCDIR}/systimes.h
370 times.o: ${BASHINCDIR}/posixtime.h
371
372 timeval.o: ${BASHINCDIR}/posixtime.h
373
374 tmpfile.o: ${topdir}/bashtypes.h
375 tmpfile.o: ${BASHINCDIR}/posixstat.h
376 tmpfile.o: ${BASHINCDIR}/filecntl.h
377
378 clock.o: ${BASHINCDIR}/posixtime.h
379
380 mailstat.o: ${topdir}/bashansi.h
381 mailstat.o: ${topdir}/bashtypes.h
382 mailstat.o: ${BASHINCDIR}/ansi_stdlib.h
383 mailstat.o: ${BASHINCDIR}/posixstat.h
384 mailstat.o: ${BASHINCDIR}/posixdir.h
385 mailstat.o: ${BASHINCDIR}/maxpath.h
386
387 fmtulong.o: ${topdir}/bashansi.h
388 fmtulong.o: ${BASHINCDIR}/ansi_stdlib.h
389 fmtulong.o: ${BASHINCDIR}/chartypes.h
390 fmtulong.o: ${BASHINCDIR}/stdc.h
391 fmtulong.o: ${BASHINCDIR}/typemax.h
392
393 fmtullong.o: ${topdir}/bashansi.h
394 fmtullong.o: ${BASHINCDIR}/ansi_stdlib.h
395 fmtullong.o: ${BASHINCDIR}/chartypes.h
396 fmtullong.o: ${BASHINCDIR}/stdc.h
397 fmtullong.o: ${BASHINCDIR}/typemax.h