* ser-tcp.c (tcp_open): Cast to struct sockaddr when passing to
[deliverable/binutils-gdb.git] / gas / Makefile.in
1 ## @configure_input@
2 # Makefile for GNU Assembler
3 # Copyright (C) 1987-1992, 1993 Free Software Foundation, Inc.
4
5 # This file is part of GNU GAS.
6
7 # GNU GAS 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 # GNU GAS 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 GNU GAS; see the file COPYING. If not, write to
19 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 # The targets for external use include:
22 # all, doc, proto, install, uninstall, includes, TAGS,
23 # clean, mostlyclean, distclean, realclean, stage1, stage2, stage3, stage4.
24
25 # Variables that exist for you to override.
26 # See below for how to change them for certain systems.
27
28 VPATH = @srcdir@
29 srcdir = @srcdir@
30 srcroot = $(srcdir)/..
31
32 target_alias = @target_alias@
33 prefix = @prefix@
34
35 program_transform_name = @program_transform_name@
36 exec_prefix = @exec_prefix@
37 bindir = $(exec_prefix)/bin
38 libdir = $(exec_prefix)/lib
39 tooldir = $(exec_prefix)/$(target_alias)
40
41 datadir = $(prefix)/lib
42 mandir = $(prefix)/man
43 man1dir = $(mandir)/man1
44 man2dir = $(mandir)/man2
45 man3dir = $(mandir)/man3
46 man4dir = $(mandir)/man4
47 man5dir = $(mandir)/man5
48 man6dir = $(mandir)/man6
49 man7dir = $(mandir)/man7
50 man8dir = $(mandir)/man8
51 man9dir = $(mandir)/man9
52 infodir = $(prefix)/info
53 includedir = $(prefix)/include
54 docdir = $(datadir)/doc
55
56 VERSION=cygnus-2.5.3
57
58 SHELL = /bin/sh
59
60 INSTALL = $${srcroot}/install.sh -c
61 INSTALL_PROGRAM = $(INSTALL)
62 INSTALL_DATA = $(INSTALL)
63 INSTALL_XFORM = $(INSTALL) -t='-e $(program_transform_name)'
64 INSTALL_XFORM1= $(INSTALL_XFORM) -b=.1
65
66 DISTSTUFF= make-gas.com
67
68 AR = ar
69 AR_FLAGS = qv
70 BISON = bison -y
71 MAKEINFO = makeinfo
72 TEXI2DVI = texi2dvi
73 RANLIB = ranlib
74 CC = @CC@
75 CFLAGS = -g
76
77 MAKEOVERRIDES=
78
79 FLAGS_TO_PASS = \
80 "prefix=$(prefix)" \
81 "exec_prefix=$(exec_prefix)" \
82 "tooldir=$(tooldir)" \
83 "AR=$(AR)" \
84 "AR_FLAGS=$(AR_FLAGS)" \
85 "CC=$(CC)" \
86 "CFLAGS=$(CFLAGS)" \
87 "RANLIB=$(RANLIB)" \
88 "LOADLIBES=$(LOADLIBES)" \
89 "LDFLAGS=$(LDFLAGS)" \
90 "BISON=$(BISON)" \
91 "LEX=$(LEX)" \
92 "MAKEINFO=$(MAKEINFO)" \
93 "INSTALL=$(INSTALL)" \
94 "INSTALL_DATA=$(INSTALL_DATA)" \
95 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)"
96
97 RUNTEST=runtest
98 CHECKFLAGS= \
99 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
100 "RUNTEST=$(RUNTEST)"
101
102 # Lists of files for various purposes.
103
104 REAL_SOURCES = \
105 $(srcdir)/app.c \
106 $(srcdir)/as.c \
107 $(srcdir)/atof-generic.c \
108 $(srcdir)/bignum-copy.c \
109 $(srcdir)/cond.c \
110 $(srcdir)/expr.c \
111 $(srcdir)/flonum-konst.c \
112 $(srcdir)/flonum-copy.c \
113 $(srcdir)/flonum-mult.c \
114 $(srcdir)/frags.c \
115 $(srcdir)/hash.c \
116 $(srcdir)/hex-value.c \
117 $(srcdir)/input-file.c \
118 $(srcdir)/input-scrub.c \
119 $(srcdir)/literal.c \
120 $(srcdir)/messages.c \
121 $(srcdir)/output-file.c \
122 $(srcdir)/read.c \
123 $(srcdir)/subsegs.c \
124 $(srcdir)/symbols.c \
125 $(srcdir)/write.c \
126 $(srcdir)/listing.c \
127 $(srcdir)/ecoff.c \
128 $(srcdir)/stabs.c
129
130 # in an expedient order
131 LINKED_SOURCES = \
132 targ-cpu.c \
133 obj-format.c \
134 atof-targ.c
135
136 SOURCES = $(LINKED_SOURCES) $(REAL_SOURCES)
137
138 REAL_HEADERS = \
139 $(srcdir)/as.h \
140 $(srcdir)/bignum.h \
141 $(srcdir)/expr.h \
142 $(srcdir)/flonum.h \
143 $(srcdir)/frags.h \
144 $(srcdir)/hash.h \
145 $(srcdir)/input-file.h \
146 $(srcdir)/listing.h \
147 $(srcdir)/tc.h \
148 $(srcdir)/obj.h \
149 $(srcdir)/read.h \
150 $(srcdir)/struc-symbol.h \
151 $(srcdir)/subsegs.h \
152 $(srcdir)/symbols.h \
153 $(srcdir)/write.h \
154 $(srcdir)/ecoff.h
155
156 LINKED_HEADERS = \
157 targ-env.h \
158 targ-cpu.h \
159 obj-format.h \
160 atof-targ.h
161
162 HEADERS = $(LINKED_HEADERS) $(REAL_HEADERS)
163
164 # @target_frag@
165
166 OBJS = \
167 targ-cpu.o \
168 obj-format.o \
169 atof-targ.o \
170 app.o \
171 as.o \
172 atof-generic.o \
173 bignum-copy.o \
174 cond.o \
175 expr.o \
176 flonum-konst.o \
177 flonum-copy.o \
178 flonum-mult.o \
179 frags.o \
180 hash.o \
181 hex-value.o \
182 input-file.o \
183 input-scrub.o \
184 literal.o \
185 messages.o \
186 output-file.o \
187 read.o \
188 subsegs.o \
189 symbols.o \
190 write.o \
191 listing.o \
192 ecoff.o \
193 stabs.o \
194 $(TE_OBJS)
195
196 # These are objects we know we'll be pulling in from other directories.
197 # For VMS, we have to build them explicitly.
198 VMS_OTHER_OBJS = \
199 ../libiberty/xmalloc.o \
200 ../libiberty/xexit.o \
201 ../libiberty/obstack.o \
202 ../libiberty/strdup.o \
203 ../libiberty/strncasecmp.o \
204 ../libiberty/concat.o \
205 ../libiberty/getopt.o \
206 ../libiberty/getopt1.o \
207 ../libiberty/getruntime.o
208
209 all: .gdbinit as.new gasp.new
210 @srcroot=`cd $(srcroot); pwd`; export srcroot; \
211 (cd doc ; $(MAKE) $(FLAGS_TO_PASS) all)
212
213 dvi info install-info clean-info:
214 @srcroot=`cd $(srcroot); pwd`; export srcroot; \
215 (cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@)
216
217 make-gas.com: stamp-mk.com
218 stamp-mk.com: vmsconf.sh Makefile
219 sh $(srcdir)/vmsconf.sh $(OBJS) $(VMS_OTHER_OBJS) > new-make.com
220 $(srcdir)/../move-if-change new-make.com $(srcdir)/make-gas.com
221 touch stamp-mk.com
222
223 # Now figure out from those variables how to compile and link.
224
225 # This is the variable actually used when we compile.
226 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(CROSS) $(CFLAGS) $(HDEFINES) $(TDEFINES)
227
228 # How to link with both our special library facilities
229 # and the system's installed libraries.
230
231 LIBS = @OPCODES_LIB@ @BFDLIB@ $(LOCAL_LOADLIBES) ../libiberty/libiberty.a
232
233 # Specify the directories to be searched for header files.
234 # Both . and srcdir are used, in that order,
235 # so that tm.h and config.h will be found in the compilation
236 # subdirectory rather than in the source directory.
237 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config -I$(srcdir)/../include -I$(srcdir)/..
238
239 # Always use -I$(srcdir)/config when compiling.
240 .c.o:
241 $(CC) -c $(ALL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $<
242
243 # This tells GNU make version 3 not to export all the variables
244 # defined in this file into the environment.
245 .NOEXPORT:
246
247 # Files to be copied away after each stage in building.
248 STAGESTUFF = *.o as.new gasp.new
249
250 $(OBJS): @ALL_OBJ_DEPS@
251
252 as.new: $(OBJS) $(LIBS)
253 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o as.new $(OBJS) $(LIBS) $(LOADLIBES)
254
255 $(OBJS): config.h
256
257 gasp.new: gasp.o
258 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o gasp.new gasp.o $(LIBS) $(LOADLIBES)
259
260 installcheck:
261 @echo No installcheck target is available yet for the GNU assembler.
262
263 check:
264 @(here=`pwd` ; export here ; \
265 cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) $(CHECKFLAGS) check)
266
267 config.status: configure
268 if [ -r config.status ]; then \
269 sh ./config.status --recheck ; \
270 else \
271 echo You must configure gas. Look at the INSTALL file for details. ; \
272 exit 1 ; \
273 fi
274
275 config.h: config-stamp ; @true
276 config-stamp: Makefile conf
277 -rm -f config.new config-stamp
278 echo '/* config.h. Generated automatically by make. */' > config.new
279 echo '#ifndef GAS_VERSION' >> config.new
280 echo '#define GAS_VERSION "$(VERSION)"' >> config.new
281 echo '' >> config.new
282 cat conf >> config.new
283 echo '#endif /* GAS_VERSION */' >> config.new
284 $(srcdir)/../move-if-change config.new config.h
285 touch config-stamp
286
287 # Compiling object files from source files.
288
289 gasp.o : gasp.c config.h
290 app.o : app.c as.h targ-env.h obj-format.h \
291 targ-cpu.h struc-symbol.h \
292 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
293 as.o : as.c as.h targ-env.h obj-format.h output-file.h \
294 targ-cpu.h struc-symbol.h \
295 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h subsegs.h \
296 tc.h obj.h config.h
297 atof-generic.o : atof-generic.c as.h targ-env.h obj-format.h \
298 targ-cpu.h struc-symbol.h \
299 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
300 bignum-copy.o : bignum-copy.c as.h \
301 targ-env.h obj-format.h \
302 targ-cpu.h struc-symbol.h \
303 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
304 cond.o : cond.c as.h targ-env.h obj-format.h \
305 targ-cpu.h struc-symbol.h \
306 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
307
308 debug.o : debug.c as.h targ-env.h obj-format.h \
309 targ-cpu.h struc-symbol.h \
310 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
311 subsegs.h
312 expr.o : expr.c as.h targ-env.h obj-format.h \
313 targ-cpu.h struc-symbol.h \
314 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
315
316 flonum-konst.o : flonum-konst.c flonum.h bignum.h
317 flonum-copy.o : flonum-copy.c as.h targ-env.h obj-format.h \
318 targ-cpu.h struc-symbol.h \
319 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
320 flonum-mult.o : flonum-mult.c flonum.h bignum.h
321 frags.o : frags.c as.h targ-env.h obj-format.h \
322 targ-cpu.h struc-symbol.h \
323 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
324 subsegs.h
325 hash.o : hash.c as.h targ-env.h obj-format.h \
326 targ-cpu.h struc-symbol.h \
327 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
328 hex-value.o : hex-value.c
329 input-file.o : input-file.c as.h \
330 targ-env.h obj-format.h targ-cpu.h \
331 struc-symbol.h write.h flonum.h bignum.h expr.h \
332 frags.h hash.h read.h symbols.h tc.h obj.h input-file.h
333 input-scrub.o : input-scrub.c /usr/include/errno.h /usr/include/sys/errno.h \
334 as.h targ-env.h obj-format.h \
335 targ-cpu.h struc-symbol.h \
336 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
337 input-file.h
338 listing.o : listing.c as.h targ-env.h flonum.h bignum.h \
339 listing.h obj-format.h targ-cpu.h struc-symbol.h write.h expr.h \
340 frags.h hash.h read.h symbols.h tc.h obj.h input-file.h subsegs.h
341 literal.o : literal.c subsegs.h as.h targ-env.h obj-format.h \
342 targ-cpu.h struc-symbol.h \
343 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
344 messages.o : messages.c as.h targ-env.h obj-format.h \
345 targ-cpu.h struc-symbol.h \
346 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
347 output-file.o : output-file.c as.h targ-env.h obj-format.h \
348 targ-cpu.h struc-symbol.h \
349 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
350 output-file.h
351 read.o : read.c as.h targ-env.h obj-format.h \
352 targ-cpu.h struc-symbol.h \
353 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h
354 subsegs.o : subsegs.c as.h targ-env.h obj-format.h \
355 targ-cpu.h struc-symbol.h \
356 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
357 subsegs.h
358 symbols.o : symbols.c as.h targ-env.h obj-format.h \
359 targ-cpu.h struc-symbol.h \
360 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
361 subsegs.h
362 write.o : write.c as.h targ-env.h obj-format.h \
363 targ-cpu.h struc-symbol.h \
364 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
365 subsegs.h output-file.h
366 ecoff.o : ecoff.c as.h targ-env.h obj-format.h \
367 targ-cpu.h struc-symbol.h \
368 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
369 ecoff.h $(srcdir)/../include/coff/internal.h \
370 $(srcdir)/../include/coff/sym.h $(srcdir)/../include/coff/ecoff.h \
371 $(srcdir)/../include/coff/symconst.h $(srcdir)/../include/aout/stab_gnu.h
372 stabs.o : stabs.c as.h targ-env.h obj-format.h \
373 targ-cpu.h struc-symbol.h \
374 write.h flonum.h bignum.h expr.h frags.h hash.h read.h symbols.h tc.h obj.h \
375 subsegs.h $(srcdir)/../include/aout/stab_gnu.h
376 atof-targ.o : atof-targ.c as.h targ-env.h obj-format.h \
377 targ-cpu.h struc-symbol.h \
378 write.h flonum.h bignum.h expr.h frags.h hash.h read.h \
379 symbols.h tc.h obj.h
380 obj-format.o : obj-format.c as.h targ-env.h obj-format.h \
381 targ-cpu.h struc-symbol.h \
382 write.h flonum.h bignum.h expr.h frags.h hash.h read.h \
383 subsegs.h symbols.h tc.h obj.h
384 targ-cpu.o : targ-cpu.c config.h targ-env.h obj-format.h \
385 targ-cpu.h struc-symbol.h \
386 write.h flonum.h bignum.h expr.h frags.h hash.h read.h \
387 symbols.h tc.h obj.h $(TARG_CPU_DEPENDENTS)
388
389 # Remake the info files.
390
391 doc: $(srcdir)/as.info
392
393 $(srcdir)/as.info: $(srcdir)/doc/as.texinfo
394 @(cd doc; $(MAKE) $(FLAGS_TO_PASS) as.info; mv as.info $srcdir)
395
396 diststuff: $(DISTSTUFF)
397
398 clean-here:
399 -rm -f $(STAGESTUFF) core stamp-mk.com
400
401 clean mostlyclean: clean-here
402 @cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@
403 @if [ -d testsuite ] ; then \
404 cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) $@ ; \
405 else true; fi
406
407 # Like clean but also delete the links made to configure gas.
408 distclean: clean-here
409 @cd doc ; $(MAKE) $(FLAGS_TO_PASS) $@
410 @if [ -d testsuite ] ; then \
411 cd testsuite ; $(MAKE) $(FLAGS_TO_PASS) $@ ; \
412 else true; fi
413 -rm -f config.status Makefile targ-env.h targ-cpu.h \
414 targ-cpu.c obj-format.h obj-format.c atof-targ.c TAGS \
415 config-stamp config.h conf config.log config.cache .gdbinit
416 realclean: clean distclean
417 -rm -rf $(DISTSTUFF)
418
419 # Entry points `install', `includes' and `uninstall'.
420
421 # Copy the files into directories where they will be run.
422 install:
423 srcroot=`cd $(srcroot); pwd`; export srcroot; \
424 $(INSTALL_XFORM) as.new $(bindir)/as; \
425 $(INSTALL_XFORM1) $(srcdir)/doc/as.1 $(man1dir)/as.1; \
426 n=`echo as | sed '$(program_transform_name)'`; \
427 if [ -d $(tooldir) ]; then \
428 if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
429 rm -f $(tooldir)/bin/as; \
430 ln $(bindir)/$$n $(tooldir)/bin/as >/dev/null 2>/dev/null \
431 || $(INSTALL_PROGRAM) as.new $(tooldir)/bin/as; \
432 else true; fi
433 srcroot=`cd $(srcroot); pwd`; export srcroot; \
434 $(INSTALL_XFORM) gasp.new $(bindir)/gasp; \
435 n=`echo gasp | sed '$(program_transform_name)' `; \
436 if [ -d $(tooldir) ]; then \
437 if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
438 rm -f $(tooldir)/bin/gasp; \
439 ln $(bindir)/$$n $(tooldir)/bin/gasp >/dev/null 2>/dev/null \
440 || $(INSTALL_PROGRAM) gasp.new $(tooldir)/bin/gasp; \
441 else true; fi
442
443 # Cancel installation by deleting the installed files.
444 uninstall:
445 -n=`t='$(program_transform_name)'; echo as | sed $$t`; \
446 rm -f $(bindir)/$$n; \
447 rm -f $(mandir)/$$n.1
448 -n=`t='$(program_transform_name)'; echo gasp | sed $$t`; \
449 rm -f $(bindir)/$$n; \
450
451 # These exist for maintenance purposes.
452
453 tags TAGS: force
454 etags $(REAL_HEADERS) $(REAL_SOURCES) $(srcdir)/config/*.[hc] $(srcdir)/README $(srcdir)/Makefile.in
455
456 bootstrap: as.new force
457 $(MAKE) stage1
458 rm -f stage && ln -s stage1 stage
459 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
460 $(MAKE) stage2
461 rm -f stage && ln -s stage2 stage
462 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
463 $(MAKE) comparison against=stage2
464
465 bootstrap2: force
466 rm -f stage && ln -s stage1 stage
467 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
468 $(MAKE) stage2
469 rm -f stage && ln -s stage2 stage
470 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
471 $(MAKE) comparison against=stage2
472
473 bootstrap3: force
474 rm -f stage && ln -s stage2 stage
475 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= as.new gasp.new
476 $(MAKE) comparison against=stage2
477
478 # Copy the object files from a particular stage into a subdirectory.
479 stage1: force
480 -mkdir stage1
481 -mv $(STAGESTUFF) stage1
482 if [ -f stage1/as.new -a ! -f stage1/as ] ; then (cd stage1 ; ln -s as.new as) ; fi
483
484 stage2: force
485 -mkdir stage2
486 -mv $(STAGESTUFF) stage2
487 if [ -f stage2/as.new -a ! -f stage2/as ] ; then (cd stage2 ; ln -s as.new as) ; fi
488
489 stage3: force
490 -mkdir stage3
491 -mv $(STAGESTUFF) stage3
492 if [ -f stage3/as.new -a ! -f stage3/as ] ; then (cd stage3 ; ln -s as.new as) ; fi
493
494 against=stage2
495
496 # This rule is derived from corresponding code in the Makefile.in for gcc.
497 # The "tail +16c" is to bypass headers which may include timestamps or
498 # temporary assembly file names.
499 comparison: force
500 x=0 ; \
501 for file in $(STAGESTUFF) ; do \
502 tail +16c ./$$file > tmp-foo1; \
503 if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
504 if cmp tmp-foo1 tmp-foo2 ; then \
505 true ; \
506 else \
507 echo $$file differs ; \
508 x=1 ; \
509 fi ; \
510 else true; fi ; \
511 done ; \
512 exit $$x
513 -rm -f tmp-foo*
514
515 de-stage1: force
516 - (cd stage1 ; rm -f as ; mv -f * ..)
517 - rmdir stage1
518
519 de-stage2: force
520 - (cd stage2 ; rm -f as ; mv -f * ..)
521 - rmdir stage2
522
523 de-stage3: force
524 - (cd stage3 ; rm -f as ; mv -f * ..)
525 - rmdir stage3
526
527 #In GNU Make, ignore whether `stage*' exists.
528 .PHONY: stage1 stage2 stage3 stage4 clean mostlyclean realclean distclean
529 .PHONY: TAGS bootstrap
530
531 force:
532
533 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) \
534 $(srcdir)/configure.in config.status
535 $(SHELL) ./config.status
536 .gdbinit: $(srcdir)/gdbinit.in config.status
537 $(SHELL) ./config.status
This page took 0.042167 seconds and 4 git commands to generate.