Moved the position of the #### lines so that the makefile fragments
[deliverable/binutils-gdb.git] / gdb / Makefile.in
1 ##Copyright (C) 1989-1991 Free Software Foundation, Inc.
2
3 # This file is part of GDB.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 # Host and target-dependent makefile fragments come in here.
20 ####
21 # End of host and target-dependent makefile fragments
22
23 # Destination directory of the software tree build
24 ddestdir = /usr/local
25
26 # Place to install binaries in the destination tree.
27 bindir=$(ddestdir)/bin
28
29 # System V: If you compile gdb with a compiler which uses the coff
30 # encapsulation feature (this is a function of the compiler used, NOT
31 # of the m-?.h file selected by config.gdb), you must make sure that
32 # the GNU nm is the one that is used by munch.
33
34 # If you are compiling with GCC, make sure that either 1) You use the
35 # -traditional flag, or 2) You have the fixed include files where GCC
36 # can reach them. Otherwise the ioctl calls in inflow.c
37 # will be incorrectly compiled. The "fixincludes" script in the gcc
38 # distribution will fix your include files up.
39 #CC=cc
40 #CC=gcc -traditional
41 GCC=gcc
42
43 # Directory containing source files. Don't clean up the spacing,
44 # this exact string is matched for by the "configure" script.
45 srcdir = .
46
47 # It is also possible that you will need to add -I/usr/include/sys to the
48 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
49 # is where it should be according to Posix).
50
51 BISON=bison -y
52 BISONFLAGS=
53 YACC=$(BISON) $(BISONFLAGS)
54 # YACC=yacc
55 SHELL=/bin/sh
56 MAKE=make
57
58 # Documentation (gdb.dvi) needs either GNU m4 or SysV m4;
59 # Berkeley/Sun don't have quite enough.
60 #M4=/usr/5bin/m4
61 M4=gm4
62
63 # where to find texinfo; GDB dist should include a recent one
64 TEXIDIR=${srcdir}/../texinfo/fsf
65
66 # where to find makeinfo, preferably one designed for texinfo-2
67 MAKEINFO=makeinfo
68
69 # Set this up with gcc if you have gnu ld and the loader will print out
70 # line numbers for undefinded refs.
71 #CC-LD=gcc -static
72 CC-LD=${CC}
73
74 # define this to be "gmalloc.o" if you want to use the gnu malloc routine
75 # (useful for debugging memory allocation problems in gdb). To use your
76 # system malloc, uncomment the following two lines.
77 #GNU_MALLOC =
78 #MALLOC_CFLAGS = -DNO_MALLOC_CHECK
79 GNU_MALLOC = gmalloc.o mcheck.o mtrace.o
80 MALLOC_CFLAGS =
81
82 # Where is the "include" directory? Traditionally ../include or ./include
83 INCLUDE_DIR = ${srcdir}/../include
84 INCLUDE_DEP = $$(INCLUDE_DIR)
85
86 # Where is the source dir for the BFD library? Traditionally ../bfd or ./bfd
87 # (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
88 BFD_DIR = ${srcdir}/../bfd
89 BFD_DEP = $$(BFD_DIR)
90 BFD_LIB = $(unsubdir)/../bfd${subdir}/libbfd.a
91
92 # Where is the source dir for the READLINE library? Traditionally in .. or .
93 # (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
94 READLINE_DIR = ${srcdir}/../readline
95 READLINE_DEP = $$(READLINE_DIR)
96 RL_LIB = $(unsubdir)/../readline${subdir}/libreadline.a
97
98 # All the includes used for CFLAGS and for lint.
99 # -I. for config files.
100 # -I${srcdir} possibly for regex.h also.
101 INCLUDE_CFLAGS = -I. -I${srcdir} -I$(INCLUDE_DIR) -I$(READLINE_DIR) -I${srcdir}/vx-share
102
103 # {X,T}M_CFLAGS, if defined, has system-dependent CFLAGS.
104 # CFLAGS for GDB
105 MINUS_G=-g
106 GLOBAL_CFLAGS = ${MINUS_G} ${TM_CFLAGS} ${XM_CFLAGS}
107 #PROFILE_CFLAGS = -pg
108
109 CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_CFLAGS} ${INCLUDE_CFLAGS}
110 # None of the things in CFLAGS will do any harm, and on some systems
111 # (e.g. SunOS4) it is important to use the M_CFLAGS.
112 LDFLAGS = $(CFLAGS)
113
114 # Where is the "-liberty" library, containing getopt and obstack?
115 LIBIBERTY_DIR = ${srcdir}/../libiberty
116 LIBIBERTY = $(unsubdir)/../libiberty${subdir}/libiberty.a
117
118 # Flags that describe where you can find the termcap library.
119 # You may need to make other arrangements for USG.
120 TERMCAP = -ltermcap
121
122 # The config/mh-* file must define REGEX and REGEX1 on USG machines.
123 # If your sysyem is missing alloca(), or, more likely, it's there but
124 # it doesn't work, define ALLOCA & ALLOCA1 too.
125 # If your system is missing putenv(), add putenv.c to XM_ADD_FILES.
126
127 # Libraries and corresponding dependencies for compiling gdb.
128 # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
129 # TERMCAP comes after readline, since readline depends on it.
130 CLIBS = ${BFD_LIB} ${RL_LIB} ${TERMCAP} ${LIBIBERTY} ${XM_CLIBS} ${TM_CLIBS}
131 CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_LIB} ${LIBIBERTY} ${RL_LIB}
132
133 ADD_FILES = ${REGEX} ${ALLOCA} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES}
134 ADD_DEPS = ${REGEX1} ${ALLOCA1} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES}
135
136 VERSION = 4.2.95
137 DIST=gdb
138
139 LINT=/usr/5bin/lint
140 LINTFLAGS= -I${BFD_DIR}
141
142 # Source files in the main directory.
143 # Files which are included via a config/* Makefile fragment
144 # should *not* be specified here; they're in "ALLDEPFILES".
145 SFILES_MAINDIR = \
146 blockframe.c breakpoint.c command.c core.c \
147 environ.c eval.c expprint.c findvar.c infcmd.c inflow.c infrun.c \
148 main.c printcmd.c \
149 remote.c source.c stack.c symmisc.c symtab.c symfile.c \
150 utils.c valarith.c valops.c valprint.c values.c c-exp.y m2-exp.y \
151 signame.c cplus-dem.c mem-break.c target.c inftarg.c \
152 dbxread.c coffread.c elfread.c dwarfread.c xcoffread.c \
153 ieee-float.c language.c parse.c buildsym.c
154
155 # Source files in subdirectories (which will be handled separately by
156 # 'make gdb.tar.Z').
157 # Files which are included via a config/* Makefile fragment
158 # should *not* be specified here; they're in "ALLDEPFILES".
159 SFILES_SUBDIR = \
160 ${srcdir}/vx-share/dbgRpcLib.h \
161 ${srcdir}/vx-share/ptrace.h \
162 ${srcdir}/vx-share/reg.h \
163 ${srcdir}/vx-share/vxTypes.h \
164 ${srcdir}/vx-share/vxWorks.h \
165 ${srcdir}/vx-share/wait.h \
166 ${srcdir}/vx-share/xdr_ld.h \
167 ${srcdir}/vx-share/xdr_ptrace.h \
168 ${srcdir}/vx-share/xdr_rdb.h \
169 ${srcdir}/vx-share/xdr_regs.h \
170 ${srcdir}/nindy-share/b.out.h \
171 ${srcdir}/nindy-share/block_io.h \
172 ${srcdir}/nindy-share/coff.h \
173 ${srcdir}/nindy-share/demux.h \
174 ${srcdir}/nindy-share/env.h \
175 ${srcdir}/nindy-share/stop.h \
176 ${srcdir}/nindy-share/ttycntl.h
177
178 # Non-source files in subdirs, that should go into gdb.tar.Z.
179 NONSRC_SUBDIR = \
180 ${srcdir}/nindy-share/Makefile \
181 ${srcdir}/nindy-share/VERSION
182
183 # All source files that go into linking GDB, except config-specified files.
184 SFILES = $(SFILES_MAINDIR) $(SFILES_SUBDIR)
185
186 # All source files that lint should look at
187 LINTFILES = $(SFILES) $(YYFILES) init.c
188
189 # Any additional files specified on these lines should also be added to
190 # the OTHERS = definition below, so they go in the tar files.
191 SFILES_STAND = $(SFILES) standalone.c
192 SFILES_KGDB = $(SFILES) stuff.c kdb-start.c
193
194 # Header files that are not named in config/* Makefile fragments go here.
195 HFILES= breakpoint.h buildsym.h command.h defs.h environ.h \
196 expression.h frame.h gdbcmd.h gdbcore.h \
197 ieee-float.h inferior.h minimon.h \
198 signals.h signame.h symfile.h symtab.h \
199 target.h terminal.h tm-68k.h tm-i960.h tm-sunos.h tm-svr4.h \
200 xm-m68k.h xm-svr4.h language.h parser-defs.h value.h
201
202 # Header files for machine opcode tables.
203 # when OPCODE_DIR changes to ../include, remove the whole $(OPCODES)
204 # business, since they will be put into the GDB release files by somebody else.
205 OPCODE_DIR =
206 OPCODES = $(OPCODE_DIR)pn-opcode.h $(OPCODE_DIR)np1-opcode.h \
207 $(OPCODE_DIR)sparc-opcode.h $(OPCODE_DIR)vax-opcode.h \
208 $(OPCODE_DIR)m68k-opcode.h $(OPCODE_DIR)ns32k-opcode.h \
209 $(OPCODE_DIR)convx-opcode.h $(OPCODE_DIR)pyr-opcode.h \
210 $(OPCODE_DIR)mips-opcode.h $(OPCODE_DIR)am29k-opcode.h \
211 $(OPCODE_DIR)arm-opcode.h $(OPCODE_DIR)m88k-opcode.h \
212 $(OPCODE_DIR)tahoe-opcode.h $(OPCODE_DIR)rs6k-opcode.h
213
214 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c rem-multi.shar
215
216 MALLOCSRC = gmalloc.c mcheck.c mtrace.c mtrace.awk \
217 ansidecl.h gmalloc.h
218
219 POSSLIBS_MAINDIR = regex.c regex.h alloca.c $(MALLOCSRC)
220 POSSLIBS = $(POSSLIBS_MAINDIR)
221
222 TESTS = testbpt.c testfun.c testrec.c testreg.c testregs.c
223
224 OTHERS = Makefile.in depend alldeps.mak createtags munch configure.in \
225 ChangeLog ChangeLog-3.x gdb.1 refcard.ps \
226 README TODO TAGS WHATS.NEW Projects \
227 .gdbinit COPYING $(YYFILES) \
228 copying.c Convex.notes copying.awk \
229 saber.suppress standalone.c stuff.c kdb-start.c \
230 putenv.c
231
232 # Subdirectories of gdb, which should be included in their entirety in
233 # gdb-xxx.tar.Z:
234 TARDIRS = doc # tests
235
236 # GDB "info" files, which should be included in their entirety
237 INFOFILES = gdb.info*
238
239 DEPFILES= ${TDEPFILES} ${XDEPFILES}
240
241 SOURCES=$(SFILES) $(ALLDEPFILES) $(YYFILES)
242 TAGFILES = $(SOURCES) ${HFILES} ${OPCODES} ${ALLPARAM} ${POSSLIBS}
243 TAGFILES_MAINDIR = $(SFILES_MAINDIR) $(ALLDEPFILES_MAINDIR) \
244 ${HFILES} ${OPCODES} ${ALLPARAM} ${POSSLIBS_MAINDIR}
245 TARFILES = ${TAGFILES_MAINDIR} ${OTHERS} ${REMOTE_EXAMPLES}
246
247 OBS = main.o blockframe.o breakpoint.o findvar.o stack.o source.o \
248 values.o eval.o valops.o valarith.o valprint.o printcmd.o \
249 symtab.o symfile.o symmisc.o infcmd.o infrun.o remote.o \
250 command.o utils.o expprint.o environ.o version.o \
251 copying.o $(DEPFILES) signame.o cplus-dem.o mem-break.o target.o \
252 inftarg.o ieee-float.o putenv.o parse.o language.o $(YYOBJ) \
253 buildsym.o \
254 dbxread.o coffread.o elfread.o dwarfread.o xcoffread.o # mipsread.o
255
256 RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES)
257
258 TSOBS = core.o inflow.o
259
260 NTSOBS = standalone.o
261
262 TSSTART = /lib/crt0.o
263
264 NTSSTART = kdb-start.o
265
266 SUBDIRS = doc
267
268 # For now, shortcut the "configure GDB for fewer languages" stuff.
269 YYFILES = c-exp.tab.c m2-exp.tab.c
270 YYOBJ = c-exp.tab.o m2-exp.tab.o
271
272 # Prevent Sun make from putting in the machine type. Setting
273 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
274 .c.o:
275 ${CC} -c ${CFLAGS} $<
276
277 all: gdb
278 $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)"
279 all-info: force
280 $(MAKE) subdir_do DO=all-info "DODIRS=$(SUBDIRS)"
281 install-info: force
282 $(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)"
283
284 gdb.z:gdb.1
285 nroff -man gdb.1 | col -b > gdb.t
286 pack gdb.t ; rm -f gdb.t
287 mv gdb.t.z gdb.z
288
289 install: gdb gdb.z
290 cp gdb $(bindir)/gdb.new
291 mv $(bindir)/gdb.new $(bindir)/gdb
292 $(M_INSTALL)
293 $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)"
294
295 init.c: $(srcdir)/munch $(OBS) $(TSOBS)
296 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c
297
298 gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o
299 ${CC-LD} $(LDFLAGS) -o gdb init.o $(OBS) $(TSOBS) $(ADD_FILES) \
300 $(CLIBS) $(LOADLIBES)
301
302 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
303 #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS
304 #load ./init.c $(SFILES)
305 #unload ${srcdir}/c-exp.y ${srcdir}/m2-exp.y ${srcdir}/vx-share/*.h
306 #unload ${srcdir}/nindy-share/[A-Z]*
307 #load c-exp.tab.c m2-exp.tab.c
308 #load copying.c version.c
309 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
310 #load ${LIBIBERTY_DIR}/*.c
311 #load ${BFD_DIR}/*.c
312 #load ${READLINE_DIR}/*.c
313 #load -ltermcap
314 ##void mcheck(a) void (*a)(); { }
315 ##void mtrace() { }
316
317
318
319 # This is useful when debugging GDB, because some Unix's don't let you run GDB
320 # on itself without copying the executable. So "make gdb1" will make
321 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
322 # Removing gdb1 before the copy is the right thing if gdb1 is open
323 # in another process.
324 gdb1: gdb
325 rm -f gdb1
326 cp gdb gdb1
327
328 # This is a remote stub which runs under unix and starts up an
329 # inferior process. This is at least useful for debugging GDB's
330 # remote support.
331 rapp: $(RAPP_OBS)
332 rm -f rapp_init.c
333 ${srcdir}/munch ${MUNCH_DEFINE} ${RAPP_OBS} > rapp_init.c
334 ${CC-LD} $(LDFLAGS) -o $@ rapp_init.c $(RAPP_OBS)
335
336 # Support for building Makefile out of configured pieces, automatically
337 # generated dependencies, etc. alldeps.mak is a file that contains
338 # "make" variable definitions for all ALLDEPFILES, ALLDEPFILES_MAINDIR,
339 # ALLDEPFILES_SUBDIR, ALLPARAM, and ALLCONFIG, all cadged from the current
340 # contents of the config subdirectory.
341
342 alldeps.mak: ${srcdir}/config
343 rm -f alldeps.mak alldeps.tmp allparam.tmp allconfig.tmp
344 for i in `ls -d ${srcdir}/config/m[ht]-*` ; do \
345 echo $$i >>allconfig.tmp; \
346 awk <$$i ' \
347 $$1 == "TDEPFILES=" || $$1 == "XDEPFILES=" { \
348 for (i = 2; i <= NF; i++) \
349 print $$i >> "alldeps.tmp" ; \
350 } \
351 $$1 == "TM_FILE=" || $$1 == "XM_FILE=" { \
352 print $$2 >> "allparam.tmp" }' ; \
353 done
354 sort <alldeps.tmp | uniq | \
355 sed -e 's/arm-convert.o/arm-convert.s/' \
356 -e 's!^Onindy.o!nindy-share/Onindy.c!' \
357 -e 's!^nindy.o!nindy-share/nindy.c!' \
358 -e 's!ttybreak.o!nindy-share/ttybreak.c!' \
359 -e 's!ttyflush.o!nindy-share/ttyflush.c!' \
360 -e 's!xdr_ld.o!vx-share/xdr_ld.c!' \
361 -e 's!xdr_ptrace.o!vx-share/xdr_ptrace.c!' \
362 -e 's!xdr_rdb.o!vx-share/xdr_rdb.c!' \
363 -e 's!xdr_regs.o!vx-share/xdr_regs.c!' \
364 -e 's/\.o/.c/' \
365 >alldeps2.tmp
366 echo '# Start of "alldeps.mak" definitions' \
367 >>alldeps.mak;
368 echo 'ALLDEPFILES = $$(ALLDEPFILES_MAINDIR) $$(ALLDEPFILES_SUBDIR)' \
369 >>alldeps.mak;
370 grep -v / alldeps2.tmp | \
371 awk 'BEGIN {printf "ALLDEPFILES_MAINDIR="} \
372 NR == 0 {printf $$0;} \
373 NR != 0 {printf "\\\n" $$0} \
374 END {printf "\n\n"}' >>alldeps.mak;
375 grep / alldeps2.tmp | \
376 awk 'BEGIN {printf "ALLDEPFILES_SUBDIR="} \
377 NR == 0 {printf $$0;} \
378 NR != 0 {printf "\\\n" $$0} \
379 END {printf "\n\n"}' >>alldeps.mak;
380 sort <allparam.tmp | uniq | awk 'BEGIN {printf "ALLPARAM="} \
381 NR == 0 {printf $$0;} \
382 NR != 0 {printf "\\\n" $$0} \
383 END {printf "\n\n"}' >>alldeps.mak;
384 sort <allconfig.tmp | uniq | awk 'BEGIN {printf "ALLCONFIG="} \
385 NR == 0 {printf $$0;} \
386 NR != 0 {printf "\\\n" $$0} \
387 END {printf "\n\n"}' >>alldeps.mak;
388 echo '# End of "alldeps.mak" definitions' \
389 >>alldeps.mak;
390 rm -f alldeps.tmp alldeps2.tmp allparam.tmp allconfig.tmp
391
392 # The sed script makes everything which depends on {x,t}m.h depend on
393 # config.status as well, in case someone reconfigures gdb out from
394 # under an already compiled gdb.
395 depend: $(SOURCES) Makefile.in
396 @echo Ignore errors about non-existent system-supplied include files
397 @echo for systems other than the one you are using.
398 @echo "If xm.h and tm.h don't exist, the error messages saying so"
399 @echo can safely be ignored.
400 @echo Also ignore parse errors in valops.c, and any errors in
401 @echo arm-convert.s.
402 -$(GCC) -MM $(CFLAGS) -I$(BFD_DIR) \
403 `ls $(SOURCES) | grep -v '\.[hy]$$' |sort -u` >depend.tmp
404 # If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except
405 # for xm.h and tm.h. This allows the same "depend" file to be used
406 # by the various subdirectories.
407 if [ "${srcdir}" = "." ] ; then \
408 <depend.tmp sed \
409 -e 's; ./xm.h; xm.h;g' \
410 -e 's; ./tm.h; tm.h;g' \
411 -e 's; \./; $${srcdir}/;g' \
412 -e 's; vx-share/; $${srcdir}/vx-share/;g' \
413 -e 's; nindy-share/; $${srcdir}/nindy-share/;g' \
414 >depend.tm2; \
415 rm depend.tmp; \
416 mv depend.tm2 depend.tmp; \
417 fi
418 <depend.tmp sed \
419 -e 's; [xt]m.h;& config.status;g' \
420 -e 's; $(INCLUDE_DIR)/; $(INCLUDE_DEP)/;g' \
421 -e 's; $(READLINE_DIR)/; $(READLINE_DEP)/;g' \
422 -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g' \
423 -e 's; ./xm.h; xm.h config.status;g' \
424 -e 's; ./tm.h; tm.h config.status;g' \
425 >depend
426 rm depend.tmp
427
428 config.status:
429 @echo "You must configure gdb. Look at the README file for details."
430 @false
431
432 # These are not generated by "make depend" because they only are there
433 # for some machines.
434 # But these rules don't do what we want; we want to hack the foo.o: tm.h
435 # dependency to do the right thing.
436 tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-68k.h
437 tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-68k.h
438 xm-news1000.h: xm-news.h
439 xm-i386-sv32.h: xm-i386.h
440 tm-i386gas.h: tm-i386.h
441 xm-sun4os4.h: xm-sparc.h
442 tm-sun4os4.h: tm-sparc.h
443
444 kdb: $(NTSSTART) $(OBS) $(NTSOBS) ${ADD_DEPS} ${CDEPS}
445 rm -f init.c
446 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(NTSOBS) > init.c
447 $(CC) $(LDFLAGS) -c init.c $(CLIBS)
448 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
449 -lc $(CLIBS)
450
451 # Put the proper machine-specific files first.
452 # createtags will edit the .o in DEPFILES into .c
453 TAGS: ${TAGFILES}
454 $(srcdir)/createtags $(TM_FILE) ${XM_FILE} $(DEPFILES) ${TAGFILES}
455 tags: TAGS
456
457 # Making distributions of GDB and friends.
458
459 # Make a directory `proto-gdb.dir' that contains an image of the GDB
460 # directory of the distribution, built up with symlinks.
461 make-proto-gdb.dir: force_update
462 $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
463 $(MAKE) $(MFLAGS) -f Makefile make-proto-gdb-1
464
465 # Make a tar file containing the GDB directory of the distribution.
466 gdb.tar.Z: force_update
467 $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
468 $(MAKE) $(MFLAGS) -f Makefile.in gdb-$(VERSION).tar.Z
469
470 # Set up the GDB directory for distribution, by building all files that
471 # are products of other files.
472 setup-to-dist: force_update
473 ../configure none
474 rm -f alldeps.mak
475 $(MAKE) $(MFLAGS) alldeps.mak
476 ../configure none
477 rm -f depend
478 $(MAKE) $(MFLAGS) depend
479 ../configure none
480 (cd doc; $(MAKE) $(MFLAGS) rdl-apps.texi gdbVN.m4)
481 $(MAKE) $(MFLAGS) gdb.info
482 $(MAKE) $(MFLAGS) refcard.ps
483
484 # Build a tar file from a proto-gdb.dir.
485 gdb-$(VERSION).tar.Z: force_update
486 rm -f gdb.tar gdb-$(VERSION).tar.Z
487 $(MAKE) $(MFLAGS) -f Makefile make-proto-gdb-1
488 ln -s proto-gdb.dir $(DIST)
489 tar chf - $(DIST) | compress >gdb-$(VERSION).tar.Z
490 rm -rf $(DIST) proto-gdb.dir
491
492 # Build a proto-gdb.dir after GDB has been set up for distribution.
493 # This stuff must be run in `Makefile', not `Makefile.in`; we use the makefile
494 # built in the setup-to-dist process, since it defines things like ALLCONFIG
495 # and ALLDEPFILES, that we need.
496 make-proto-gdb-1: ${TARFILES} ${TARDIRS} gdb.info
497 rm -rf proto-gdb.dir
498 mkdir proto-gdb.dir
499 cd proto-gdb.dir ; for i in ${TARFILES} ; do ln -s ../$$i . ; done
500 cd proto-gdb.dir ; ln -s ../${INFOFILES} .
501 cd proto-gdb.dir ; for i in ${TARDIRS}; do \
502 (mkdir $$i; cd $$i; \
503 ln -s ../../$$i/* .; \
504 rm -rf SCCS CVS.adm RCS); done
505 mkdir proto-gdb.dir/config
506 cd proto-gdb.dir/config ; \
507 for i in $(ALLCONFIG) ; do ln -s ../../$$i ../$$i ; done
508 mkdir proto-gdb.dir/vx-share proto-gdb.dir/nindy-share
509 cd proto-gdb.dir/config ; \
510 for i in $(SFILES_SUBDIR) $(NONSRC_SUBDIR) $(ALLDEPFILES_SUBDIR); \
511 do ln -s ../../$$i ../$$i ; done
512 chmod og=u `find . -print`
513
514 clean:
515 rm -f ${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES}
516 rm -f init.c init.o version.c
517 rm -f gdb core gdb.tar gdb.tar.Z make.log
518 rm -f gdb[0-9]
519 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)"
520
521 distclean: clean c-exp.tab.c m2-exp.tab.c TAGS
522 rm -f tm.h xm.h config.status
523 rm -f y.output yacc.acts yacc.tmp
524 rm -f ${TESTS} Makefile depend
525 $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)"
526
527 realclean: clean
528 rm -f c-exp.tab.c m2-exp.tab.c TAGS
529 rm -f tm.h xm.h config.status
530 rm -f Makefile depend
531 $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)"
532
533 STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
534
535 subdir_do: force
536 for i in $(DODIRS); do \
537 if [ -d $(unsubdir)/$$i ] ; then \
538 if (cd $(unsubdir)/$$i$(subdir); \
539 $(MAKE) \
540 "against=$(against)" \
541 "AR=$(AR)" \
542 "CC=$(CC)" \
543 "AR_FLAGS=$(AR_FLAGS)" \
544 "RANLIB=$(RANLIB)" \
545 "BISON=$(BISON)" $(DO)) ; then true ; \
546 else exit 1 ; fi ; \
547 else true ; fi ; \
548 done
549
550 # Copy the object files from a particular stage into a subdirectory.
551 stage1: force
552 -mkdir stage1
553 -mv -f $(STAGESTUFF) stage1
554 $(MAKE) subdir_do DO=stage1 "DODIRS=$(SUBDIRS)"
555
556 stage2: force
557 -mkdir stage2
558 -mv -f $(STAGESTUFF) stage2
559 $(MAKE) subdir_do DO=stage2 "DODIRS=$(SUBDIRS)"
560
561 stage3: force
562 -mkdir stage3
563 -mv -f $(STAGESTUFF) stage3
564 $(MAKE) subdir_do DO=stage3 "DODIRS=$(SUBDIRS)"
565
566 against=stage2
567
568 comparison: force
569 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
570 $(MAKE) subdir_do DO=comparison "DODIRS=$(SUBDIRS)"
571
572 de-stage1: force
573 -(cd stage1 ; mv -f * ..)
574 -rmdir stage1
575 $(MAKE) subdir_do DO=de-stage1 "DODIRS=$(SUBDIRS)"
576
577 de-stage2: force
578 -(cd stage2 ; mv -f * ..)
579 -rmdir stage2
580 $(MAKE) subdir_do DO=de-stage2 "DODIRS=$(SUBDIRS)"
581
582 de-stage3: force
583 -(cd stage3 ; mv -f * ..)
584 -rmdir stage3
585 $(MAKE) subdir_do DO=de-stage3 "DODIRS=$(SUBDIRS)"
586
587 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
588 $(SHELL) ./config.status
589
590 force:
591
592 # Documentation!
593 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
594 refcard.dvi: $(srcdir)/doc/refcard.tex
595 ( cd $(srcdir)/doc; $(MAKE) refcard.dvi )
596 mv $(srcdir)/doc/refcard.dvi .
597
598 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
599 refcard.ps: $(srcdir)/doc/refcard.tex
600 ( cd $(srcdir)/doc; $(MAKE) refcard.ps )
601 mv $(srcdir)/doc/refcard.ps .
602
603 # GDB MANUAL: TeX dvi file
604 gdb.dvi: $(srcdir)/doc/gdb-all.texi $(srcdir)/doc/rdl-apps.texi
605 ( cd $(srcdir)/doc; $(MAKE) M4=$(M4) gdb.dvi )
606 mv $(srcdir)/doc/gdb.dvi .
607
608 # GDB MANUAL: info file
609 gdb.info: $(srcdir)/doc/gdb-all.texi
610 ( cd $(srcdir)/doc; $(MAKE) M4=$(M4) gdb.info )
611 mv $(srcdir)/doc/gdb.info* .
612
613 $(srcdir)/doc/gdb-all.texi:
614 (cd $(srcdir)/doc; $(MAKE) M4=$(M4) gdb-all.texi)
615 $(srcdir)/doc/rdl-apps.texi:
616 (cd $(srcdir)/doc; $(MAKE) rdl-apps.texi)
617
618 # Make copying.c from COPYING
619 copying.c: ${srcdir}/COPYING ${srcdir}/copying.awk
620 awk -f ${srcdir}/copying.awk < ${srcdir}/COPYING > copying.c
621
622 version.c: Makefile.in
623 echo 'char *version = "$(VERSION)";' >version.c
624
625 # c-exp.tab.c is generated in target dir from c-exp.y if it doesn't exist
626 # in srcdir, then compiled in target dir to c-exp.tab.o.
627 c-exp.tab.o: c-exp.tab.c
628 c-exp.tab.c: $(srcdir)/c-exp.y
629 @echo 'Expect 4 shift/reduce conflicts.'
630 ${YACC} $(srcdir)/c-exp.y
631 -mv y.tab.c c-exp.tab.c
632
633 # m2-exp.tab.c is generated in target dir from m2-exp.y if it doesn't exist
634 # in srcdir, then compiled in target dir to m2-exp.tab.o.
635 m2-exp.tab.o: m2-exp.tab.c
636 m2-exp.tab.c: $(srcdir)/m2-exp.y
637 ${YACC} $(srcdir)/m2-exp.y
638 -mv y.tab.c m2-exp.tab.c
639
640 # The symbol-file readers have dependencies on BFD header files.
641 dbxread.o: ${srcdir}/dbxread.c
642 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/dbxread.c
643
644 coffread.o: ${srcdir}/coffread.c
645 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/coffread.c
646
647 mipsread.o: ${srcdir}/mipsread.c
648 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/mipsread.c
649
650 elfread.o: ${srcdir}/elfread.c
651 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/elfread.c
652
653 xcoffread.o: ${srcdir}/xcoffread.c
654 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffread.c
655
656 xcoffexec.o: ${srcdir}/xcoffexec.c
657 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffexec.c
658
659 # Drag in the files that are in another directory.
660
661 xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c
662 ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_ld.c
663
664 xdr_ptrace.o: ${srcdir}/vx-share/xdr_ptrace.c
665 ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_ptrace.c
666
667 xdr_rdb.o: ${srcdir}/vx-share/xdr_rdb.c
668 ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_rdb.c
669
670 xdr_regs.o: ${srcdir}/vx-share/xdr_regs.c
671 ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_regs.c
672
673 nindy.o: ${srcdir}/nindy-share/nindy.c
674 ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/nindy.c
675
676 Onindy.o: ${srcdir}/nindy-share/Onindy.c
677 ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/Onindy.c
678
679 ttybreak.o: ${srcdir}/nindy-share/ttybreak.c
680 ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/ttybreak.c
681
682 ttyflush.o: ${srcdir}/nindy-share/ttyflush.c
683 ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/ttyflush.c
684
685 lint: $(LINTFILES)
686 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
687 `echo ${DEPFILES} | sed 's/\.o /\.c /g'
688
689 gdb.cxref: $(SFILES)
690 cxref -I. $(SFILES) >gdb.cxref
691
692 force_update:
693
694 # When used with GDB, the demangler should never look for leading
695 # underscores because GDB strips them off during symbol read-in. Thus
696 # -Dnounderscore.
697
698 cplus-dem.o: cplus-dem.c
699 ${CC} -c ${CFLAGS} -Dnounderscore \
700 `echo ${srcdir}/cplus-dem.c | sed 's,^\./,,'`
701
702 # GNU Make has an annoying habit of putting *all* the Makefile variables
703 # into the environment, unless you include this target as a circumvention.
704 # Rumor is that this will be fixed (and this target can be removed)
705 # in GNU Make 4.0.
706 .NOEXPORT:
707
708 # This is the end of "Makefile.in". When built into "Makefile"
709 # by the configure script, two things are added below this point:
710 # alldeps.mak -- defintions of all files that are used in
711 # host- or target-dependent configurations
712 # depend -- what .o files depend on what .c and .h files,
713 # for all configurations.
714
715
This page took 0.04964 seconds and 4 git commands to generate.