1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
|
CC=cc
INCLUDE_DIR = ../include
LIBIBERTY_DIR = ../libiberty
LIBIBERTY = ../libiberty/libiberty.olb
MMALLOC_DIR = ../mmalloc
MMALLOC_SRC = $(MMALLOC_DIR)/
MMALLOC = $(MMALLOC_DIR)/libmmalloc.olb
BFD_DIR = ../bfd
BFD_SRC = $(BFD_DIR)
BFD = $(BFD_DIR)/libbfd.olb
READLINE_DIR = ../readline
READLINE_SRC = $(READLINE_DIR)/
READLINE = $(READLINE_DIR)/libreadline.olb
OPCODES_DIR = ../opcodes
OPCODES = ../opcodes/libopcodes.olb
DEFS = /DEFINE=(HAVE_CONFIG_H,NO_MMALLOC,GDBTK_LIBRARY="""GNU:[DATA.GDBTCL]""")
#DEFS = /DEFINE=(HAVE_CONFIG_H,NO_MMALLOC)
INCLUDES = /INCLUDE=([],[.config],[-.include.opcode],[-.readline],[-.bfd], \
[-.mmalloc],[-.include],[-.tcl.generic],[-.tk.generic])
#[-.mmalloc],[-.include])
CFLAGS = /NAMES=(AS_IS,SHORTENED)/FLOAT=IEEE_FLOAT/WARN=DISABLE=(MISSINGRETURN,IMPLICITFUNC,LONGEXTERN,PROMOTMATCHW,INTRINSICINT)/STANDARD=RELAXED/prefix=(all,except=("getopt","optarg","optopt","optind","opterr"))
INTERNAL_CFLAGS = $(CFLAGS) $(DEFS) $(INCLUDES)
INTERNAL_LDFLAGS =
DIST=gdbtk
host_alias = alpha-dec-vms7.1
target_alias = alpha-dec-vms7.1
REGEX = gnu-regex.obj
SER_HARDWIRE = ser-unix.obj
REMOTE_OBS = dcache.obj remote-utils.obj remote-evax.obj ser-evax.obj
ANNOTATE_OBS = annotate.obj
SFILES = ada-exp.y ada-lang.c ada-typeprint.c ada-valprint.c ada-tasks.c \
scache.c \
bcache.c blockframe.c breakpoint.c buildsym.c c-exp.y \
c-lang.c c-typeprint.c c-valprint.c ch-exp.c ch-lang.c \
ch-typeprint.c ch-valprint.c coffread.c command.c complaints.c \
corefile.c cp-valprint.c \
dbxread.c demangle.c dwarfread.c dwarf2read.c \
elfread.c environ.c eval.c evaxread.c expprint.c \
f-exp.y f-lang.c f-typeprint.c f-valprint.c findvar.c \
gdbtypes.c infcmd.c inflow.c infrun.c language.c \
jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \
printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c scm-valprint.c \
source.c stabsread.c stack.c symfile.c symmisc.c \
symtab.c target.c thread.c top.c \
typeprint.c utils.c \
valarith.c valops.c valprint.c values.c \
serial.c ser-unix.c mdebugread.c os9kread.c \
gdbtk-asm.c gdbtk-brkpt.c gdbtk-cmd.c gdbtk-files.c gdbtk-main.c \
gdbtk-regs.c gdbtk-src.c gdbtk-stack.c gdbtk-tasks.c gdbtk-util.c
# "system" headers. Using these in dependencies is a rather personal
# choice. (-rich, summer 1993)
# (Why would we not want to depend on them? If one of these changes in a
# non-binary-compatible way, it is a real pain to remake the right stuff
# without these dependencies -kingdon, 13 Mar 1994)
getopt_h = $(INCLUDE_DIR)/getopt.h
floatformat_h = $(INCLUDE_DIR)/floatformat.h
bfd_h = $(BFD_DIR)/bfd.h
wait_h = $(INCLUDE_DIR)/wait.h
dis-asm_h = $(INCLUDE_DIR)/dis-asm.h
remote-sim_h = $(INCLUDE_DIR)/remote-sim.h
dcache_h = dcache.h
remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h $(remote-sim_h)
readline_headers = \
$(READLINE_SRC)/chardefs.h \
$(READLINE_SRC)/history.h \
$(READLINE_SRC)/keymaps.h \
$(READLINE_SRC)/readline.h
udiheaders = \
$(srcdir)/29k-share/udi/udiproc.h \
$(srcdir)/29k-share/udi/udiphcfg.h \
$(srcdir)/29k-share/udi/udiphunix.h \
$(srcdir)/29k-share/udi/udiptcfg.h \
$(srcdir)/29k-share/udi/udipt29k.h \
$(srcdir)/29k-share/udi/udisoc.h
gdbcore_h = gdbcore.h $(bfd_h)
frame_h = frame.h
symtab_h = symtab.h bcache.h
gdbtypes_h = gdbtypes.h
expression_h = expression.h
value_h = value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
breakpoint_h = breakpoint.h $(frame_h) $(value_h)
command_h = command.h
gdbcmd_h = gdbcmd.h $(command_h)
defs_h = defs.h xm.h tm.h nm.h config.h
inferior_h = inferior.h $(breakpoint_h)
gdb_string_h = gdb_string.h
# Header files that need to have srcdir added. Note that in the cases
# where we use a macro like $(gdbcmd_h), things are carefully arranged
# so that each .h file is listed exactly once (M-x tags-search works
# wrong if TAGS has files twice). Because this is tricky to get
# right, it is probably easiest just to list .h files here directly.
HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
dst.h environ.h $(gdbcmd_h) gdbcore.h \
gdb-stabs.h $(inferior_h) language.h minimon.h monitor.h \
objfiles.h parser-defs.h partial-stab.h serial.h signals.h solib.h \
symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
ada-lang.h c-lang.h ch-lang.h f-lang.h jv-lang.h m2-lang.h \
complaints.h valprint.h \
29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
nindy-share/block_io.h nindy-share/coff.h \
nindy-share/env.h nindy-share/stop.h \
vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \
dcache.h remote-utils.h top.h somsolib.h \
gdbtk.h gdbtk-util.h
# Header files that already have srcdir in them, or which are in objdir.
HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
# GDB "info" files, which should be included in their entirety
INFOFILES = gdb.info*
REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
POSSLIBS = gnu-regex.c gnu-regex.h
TDEPFILES = evax-tdep.obj
XDEPFILES = evax-hdep.obj
# {X,T,NAT}DEPFILES are something of a pain in that it's hard to
# default their values the way we do for SER_HARDWIRE; in the future
# maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
# variables analogous to SER_HARDWIRE which get defaulted in this
# Makefile.in
DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
$(REMOTE_OBS) $(SIM_OBS)
# $(REMOTE_OBS) $(SIM_OBS)
SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES)
# Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
# and it's more useful to see it in the .y file.
TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
$(POSSLIBS)
TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
COMMON_OBS = version.obj blockframe.obj breakpoint.obj findvar.obj stack.obj thread.obj \
source.obj values.obj eval.obj valops.obj valarith.obj valprint.obj printcmd.obj \
symtab.obj symfile.obj symmisc.obj infcmd.obj infrun.obj command.obj \
expprint.obj environ.obj gdbtypes.obj copying.obj $(DEPFILES) \
mem-break.obj target.obj parse.obj language.obj $(YYOBJ) buildsym.obj \
exec.obj bcache.obj objfiles.obj minsyms.obj maint.obj demangle.obj \
dbxread.obj coffread.obj elfread.obj \
dwarfread.obj dwarf2read.obj mipsread.obj stabsread.obj corefile.obj \
ada-lang.obj ada-typeprint.obj ada-valprint.obj ada-tasks.obj \
scache.obj \
c-lang.obj ch-exp.obj ch-lang.obj f-lang.obj \
jv-lang.obj jv-valprint.obj jv-typeprint.obj m2-lang.obj \
scm-exp.obj scm-lang.obj scm-valprint.obj complaints.obj typeprint.obj \
c-typeprint.obj ch-typeprint.obj f-typeprint.obj m2-typeprint.obj \
c-valprint.obj cp-valprint.obj ch-valprint.obj f-valprint.obj m2-valprint.obj \
nlmread.obj serial.obj mdebugread.obj os9kread.obj top.obj utils.obj \
evaxread.obj evax-solib.obj \
gdbtk-asm.obj gdbtk-brkpt.obj gdbtk-cmd.obj gdbtk-files.obj gdbtk-main.obj \
gdbtk-regs.obj gdbtk-src.obj gdbtk-stack.obj gdbtk-tasks.obj gdbtk-util.obj gdbtk-tcltk.obj
OBS = $(COMMON_OBS) $(ANNOTATE_OBS) main.obj
LIBGDB_OBS =
TSOBS = inflow.obj
NTSOBS = standalone.obj
NTSSTART = kdb-start.obj
SUBDIRS = doc testsuite nlm
# For now, shortcut the "configure GDB for fewer languages" stuff.
YYFILES = ada-exp_tab.c c-exp_tab.c jv-exp_tab.c f-exp_tab.c m2-exp_tab.c
YYOBJ = ada-exp_tab.obj c-exp_tab.obj jv-exp_tab.obj f-exp_tab.obj m2-exp_tab.obj
# Things which need to be built when making a distribution.
DISTSTUFF = $(YYFILES)
# Prevent Sun make from putting in the machine type. Setting
# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
.c.obj:
$(CC) $(INTERNAL_CFLAGS) $< + SYS$$LIBRARY:SYS$$LIB_C.TLB/LIB
all: gdb.exe
init.c: $(OBS) $(TSOBS)
@ makeinit/out=tmp-init.c
@ move_if_change tmp-init.c init.c
.PRECIOUS: init.c
version.c: Makefile.vms
echo 'char *version = "$(VERSION)";' >version.c
echo 'char *host_name = "$(host_alias)";' >> version.c
echo 'char *target_name = "$(target_alias)";' >> version.c
# Removing the old gdb first works better if it is running, at least on SunOS.
gdb.exe: $(OBS) $(TSOBS) $(ADD_DEPS) $(CDEPS) $(REGEX) init.obj $(BFD) $(READLINE)
gcc -nostdlib -nostartfiles -o gdb \
$(OBS) $(TSOBS) $(REGEX) init.obj \
-L$(BFD_DIR) -L$(READLINE_DIR) -L$(OPCODES_DIR) -L$(LIBIBERTY_DIR) \
-lbfd -lreadline -lopcodes -liberty \
--for-linker=disk$$vmsuser1:[RUPP.gcclib.lib]tkshr/share \
--for-linker=disk$$vmsuser1:[RUPP.gcclib.lib]tclshr/share \
--for-linker=sys$$share:decw$$xlibshr/share
# --for-linker=multinet:multinet_socket_library/share
libgdb: libgdb-files $(LIBGDB_OBS)
# FIXME. These are not generated by "make depend" because they only are there
# for some machines.
# But these rules don't do what we want; we want to hack the foo.obj: tm.h
# dependency to do the right thing.
tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
xm-news1000.h: xm-news.h
xm-i386-sv32.h: xm-i386.h
tm-i386gas.h: tm-i386.h
xm-sun4os4.h: xm-sparc.h
tm-sun4os4.h: tm-sparc.h
xm-vaxult.h: xm-vax.h
xm-vaxbsd.h: xm-vax.h
force:
# Make copying.c from COPYING
copying.c: COPYING copying.awk
awk -f $(srcdir)/copying.awk < $(srcdir)/COPYING > copying.c
ada-lex.c: ada-lex.l
flex -Isit ada-lex.l > ada-lex.c
ada-exp_tab.obj: ada-exp_tab.c ada-lex.c
c-exp_tab.obj: c-exp_tab.c
f-exp_tab.obj: f-exp_tab.c
m2-exp_tab.obj: m2-exp_tab.c
# These files are updated atomically, so make never has to remove them
.PRECIOUS: m2-exp_tab.c f-exp_tab.c c-exp_tab.c
force_update:
# GNU Make has an annoying habit of putting *all* the Makefile variables
# into the environment, unless you include this target as a circumvention.
# Rumor is that this will be fixed (and this target can be removed)
# in GNU Make 4.0.
.NOEXPORT:
# GNU Make 3.63 has a different problem: it keeps tacking command line
# overrides onto the definition of $(MAKE). This variable setting
# will remove them.
MAKEOVERRIDES=
## This is ugly, but I don't want GNU make to put these variables in
## the environment. Older makes will see this as a set of targets
## with no dependencies and no actions.
unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
ALLDEPFILES = a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
altos-xdep.c arm-convert.s \
arm-tdep.c arm-xdep.c coff-solib.c \
convex-tdep.c convex-xdep.c \
core-sol2.c core-regset.c core-aout.c corelow.c \
dcache.c delta68-nat.c dpx2-nat.c dstread.c \
evax-hdep.c evax-solib.c evax-tdep.c exec.c fork-child.c \
go32-xdep.c gould-tdep.c gould-xdep.c h8300-tdep.c h8500-tdep.c \
hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
hpread.c \
i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c \
i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
i387-tdep.c \
i960-tdep.c \
infptrace.c inftarg.c irix4-nat.c irix5-nat.c isi-xdep.c \
lynx-nat.c m3-nat.c \
m68k-tdep.c \
m88k-nat.c m88k-tdep.c mac-nat.c mips-nat.c \
mips-tdep.c mipsm3-nat.c mipsv4-nat.c news-xdep.c \
nindy-tdep.c \
ns32k-tdep.c ns32km3-nat.c osfsolib.c \
somread.c somsolib.c $(HPREAD_SOURCE) \
procfs.c pyr-tdep.c pyr-xdep.c \
remote-adapt.c remote-array.c remote-bug.c remote-e7000.c remote-eb.c \
remote-es.c remote-hms.c remote-mips.c \
remote-mm.c remote-nindy.c remote-os9k.c remote-rdp.c remote-sim.c \
remote-st.c remote-utils.c dcache.c \
remote-udi.c remote-vx.c remote-vx29k.c \
rs6000-nat.c rs6000-tdep.c \
ser-go32.c ser-tcp.c sh-tdep.c solib.c sparc-nat.c \
sparc-tdep.c sparcl-tdep.c sun3-nat.c sun386-nat.c \
symm-tdep.c symm-nat.c \
tahoe-tdep.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \
vax-tdep.c \
win32-nat.c \
xcoffread.c xcoffsolib.c z8k-tdep.c
udip2soc.obj: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
udi2go32.obj: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
udr.obj: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
a29k-tdep.obj: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
a68v-nat.obj: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
ada-lang.obj: ada-lang.c ada-lang.h c-lang.h $(defs_h) $(expression_h) \
$(gdbtypes_h) $(inferior_h) language.h parser-defs.h $(symtab_h) \
symfile.h objfiles.h
ada-tasks.obj: ada-tasks.c ada-tasks.h $(defs_h) language.h $(value_h) \
$(command_h) $(value_h) gdbthread.h
ada-typeprint.obj: ada-typeprint.c ada-lang.h $(defs_h) $(expression_h) \
$(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
target.h typeprint.h $(value_h) ada-lang.h
ada-valprint.obj: ada-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h $(symtab_h) valprint.h $(value_h) c-lang.h ada-lang.h
alpha-nat.obj: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
alpha-tdep.obj: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) $(symtab_h) $(dis-asm.h) $(gdb_string_h)
altos-xdep.obj: altos-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
annotate.obj: annotate.c $(defs_h) annotate.h $(value_h) target.h $(gdbtypes_h)
arm-tdep.obj: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
$(gdbcore_h)
bcache.obj: bcache.c bcache.h $(defs_h)
blockframe.obj: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
objfiles.h symfile.h target.h
breakpoint.obj: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) language.h target.h gdbthread.h $(gdb_string_h) \
ada-tasks.h
buildsym.obj: buildsym.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
objfiles.h symfile.h $(symtab_h) $(gdb_string_h)
c-lang.obj: c-lang.c c-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h parser-defs.h $(symtab_h)
c-typeprint.obj: c-typeprint.c c-lang.h $(defs_h) $(expression_h) \
$(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
target.h typeprint.h $(value_h) $(gdb_string_h)
c-valprint.obj: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h $(symtab_h) valprint.h $(value_h)
f-lang.obj: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h parser-defs.h $(symtab_h) $(gdb_string_h)
f-typeprint.obj: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
$(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
target.h typeprint.h $(value_h) $(gdb_string_h)
f-valprint.obj: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h $(symtab_h) valprint.h $(value_h) $(gdb_string_h)
ch-exp.obj: ch-exp.c ch-lang.h $(defs_h) language.h parser-defs.h $(bfd_h) symfile.h objfiles.h $(value_h)
ch-lang.obj: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h parser-defs.h $(symtab_h)
ch-typeprint.obj: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
$(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
target.h $(value_h) typeprint.h $(gdb_string_h)
ch-valprint.obj: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h $(symtab_h) valprint.h $(value_h) c-lang.h
coff-solib.obj: coff-solib.c $(defs_h)
coffread.obj: coffread.c $(bfd_h) $(breakpoint_h) buildsym.h \
complaints.h $(defs_h) $(expression_h) $(gdbtypes_h) objfiles.h \
symfile.h $(symtab_h) gdb-stabs.h stabsread.h target.h \
$(gdb_string_h)
command.obj: command.c $(defs_h) $(expression_h) $(gdbcmd_h) \
$(gdbtypes_h) $(symtab_h) $(value_h) $(gdb_string_h) $(wait_h)
complaints.obj: complaints.c complaints.h $(defs_h) $(gdbcmd_h)
convex-tdep.obj: convex-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) \
$(gdbcore_h) $(inferior_h)
convex-xdep.obj: convex-xdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h)
copying.obj: copying.c $(defs_h) $(gdbcmd_h)
core-aout.obj: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h)
core-sol2.obj: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) target.h $(gdb_string_h)
core-regset.obj: core-regset.c $(command_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) target.h $(gdb_string_h)
corefile.obj: corefile.c $(dis-asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) target.h language.h $(gdb_string_h)
corelow.obj: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
target.h gdbthread.h $(gdb_string_h)
cp-valprint.obj: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
$(gdbtypes_h) $(symtab_h) $(value_h) $(gdb_string_h)
dcache.obj: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h) $(gdb_string_h) $(gdbcore_h)
dbxread.obj: dbxread.c $(breakpoint_h) buildsym.h $(command_h) \
complaints.h $(defs_h) $(expression_h) gdb-stabs.h $(gdbcore_h) \
$(gdbtypes_h) language.h objfiles.h partial-stab.h stabsread.h \
symfile.h $(symtab_h) target.h $(gdb_string_h)
dec-thread.obj: dec-thread.c $(defs_h) $(gdbcmd_h) $(inferior_h) \
gdbthread.h target.h
$(CC) $(INTERNAL_CFLAGS) $< + SYS$$LIBRARY:SYS$$LIB_C.TLB/LIB
delta68-nat.obj: delta68-nat.c $(defs_h)
demangle.obj: demangle.c $(defs_h) $(gdbcmd_h) $(gdb_string_h)
dpx2-nat.obj: dpx2-nat.c $(defs_h) $(gdbcore_h) $(gdb_string_h)
dstread.obj: dstread.c $(gdb_string_h)
dwarfread.obj: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
$(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
$(symtab_h) $(gdb_string_h)
dwarf2read.obj: dwarf2read.c $(bfd_h) buildsym.h $(defs_h) \
$(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
$(symtab_h) $(gdb_string_h)
elfread.obj: elfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
gdb-stabs.h objfiles.h symfile.h $(symtab_h) $(gdb_string_h) \
$(BFD_SRC)/elf-bfd.h $(INCLUDE_DIR)/elf/mips.h
environ.obj: environ.c $(defs_h) environ.h $(gdbcore_h) $(gdb_string_h)
eval.obj: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
$(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
$(gdb_string_h)
evax-hdep.obj: evax-hdep.c $(defs_h)
evax-solib.obj: evax-solib.c $(defs_h) evax-solib.h
evax-tdep.obj: evax-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) $(symtab_h) $(dis-asm.h) $(gdb_string_h)
evaxread.obj: evaxread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h \
$(gdb_string_h)
exec.obj: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
target.h language.h $(gdb_string_h)
expprint.obj: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h parser-defs.h $(symtab_h) $(value_h)
findvar.obj: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
$(gdb_string_h)
fork-child.obj: fork-child.c $(wait_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) target.h terminal.h gdbthread.h $(gdb_string_h) \
ada-tasks.h
gdbtk-asm.obj: gdbtk-asm.c $(defs_h) $(symtab_h) $(inferior_h) gdbtk.h
gdbtk-brkpt.obj: gdbtk-brkpt.c $(defs_h) $(inferior_h) $(breakpoint_h) gdbtk.h
gdbtk-cmd.obj: gdbtk-cmd.c $(defs_h) $(inferior_h) $(command_h) $(gdb_string_h) \
gdbtk.h
gdbtk-files.obj: gdbtk-files.c $(defs_h) $(symtab_h) symfile.h objfiles.h gdbtk.h
gdbtk-main.obj: gdbtk-main.c $(defs_h) $(inferior_h) top.h $(gdb_string_h) \
gdbtk.h gdbtk-util.h
gdbtk-regs.obj: gdbtk-regs.c $(defs_h) $(inferior_h) gdbtk.h
gdbtk-src.obj: gdbtk-src.c $(defs_h) $(symtab_h) gdbtk.h
gdbtk-stack.obj: gdbtk-stack.c $(defs_h) $(symtab_h) $(frame_h) gdbtk.h
gdbtk-tasks.obj: gdbtk-tasks.c $(defs_h) $(inferior_h) $(gdb_string_h) ada-tasks.h \
gdbtk.h
gdbtk-tcltk.c: gdbtcl/gdbtk-embed.h gdbtcl/*.tcl
make -C gdbtcl $(FLAGS_TO_PASS) all
cp gdbtcl/gdbtk-tcltk.c .
gdbtk-tcltk.obj: gdbtk-tcltk.c
gdbtk-util.obj: gdbtk-util.c $(defs_h) $(symtab_h) $(inferior_h) symfile.h \
gdbtk.h
gdbtypes.obj: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
$(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
$(value_h) $(gdb_string_h)
gnu-nat.obj: process_reply_S.h exc_request_S.h notify_S.h msg_reply_S.h \
exc_request_U.h msg_U.h gnu-nat.h
go32-xdep.obj: go32-xdep.c
gould-tdep.obj: gould-tdep.c $(OP_INCLUDE)/np1.h $(defs_h) $(frame_h) \
$(gdbcore_h) $(symtab_h)
gould-xdep.obj: gould-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
h8300-tdep.obj: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h)
h8500-tdep.obj: h8500-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) \
$(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
$(value_h)
hp300ux-nat.obj: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
hppa-tdep.obj: hppa-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) objfiles.h symfile.h target.h
hppab-nat.obj: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
hppah-nat.obj: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
i386gnu-nat.obj: gnu-nat.h
i386-tdep.obj: i386-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
$(gdb_string_h)
i386aix-nat.obj: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
language.h $(gdbcore_h) $(floatformat_h) target.h
i386b-nat.obj: i386b-nat.c $(defs_h)
i386ly-nat.obj: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
i386ly-tdep.obj: i386ly-tdep.c $(defs_h) $(inferior_h) target.h $(gdbcore_h)
i386m3-nat.obj: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) target.h
i386mach-nat.obj: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
i386v-nat.obj: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) language.h target.h
i386v4-nat.obj: i386v4-nat.c $(defs_h)
i387-tdep.obj: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) language.h
i960-tdep.obj: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
$(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(gdbcore_h)
infcmd.obj: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) target.h language.h $(gdb_string_h)
inflow.obj: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
signals.h target.h terminal.h gdbthread.h $(gdb_string_h) \
ada-tasks.h
infptrace.obj: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
$(gdb_string_h) $(wait_h) $(command_h)
infrun.obj: infrun.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) target.h gdbthread.h $(gdb_string_h) ada-tasks.h
inftarg.obj: inftarg.c $(wait_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
target.h terminal.h $(command_h)
irix4-nat.obj: irix4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
irix5-nat.obj: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) target.h \
$(symtab_h) symfile.h objfiles.h $(command_h) $(frame_h) gnu-regex.h \
language.h $(gdb_string_h)
isi-xdep.obj: isi-xdep.c
language.obj: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
$(gdbcmd_h) $(gdbtypes_h) language.h parser-defs.h $(symtab_h) \
target.h $(value_h) $(gdb_string_h)
lynx-nat.obj: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcore_h) \
target.h
m2-lang.obj: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h m2-lang.h parser-defs.h $(symtab_h)
m2-typeprint.obj: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
$(gdbcore_h) $(gdbtypes_h) language.h m2-lang.h $(symtab_h) target.h \
$(value_h) $(gdb_string_h)
m2-valprint.obj: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
valprint.h m2-lang.h
m3-nat.obj: m3-nat.c $(defs_h) $(inferior_h) $(value_h) language.h target.h \
$(wait_h) $(gdbcmd_h) $(gdbcore_h)
m68k-tdep.obj: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
$(gdbcore_h) $(gdb_string_h)
m68kly-nat.obj: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
m88k-nat.obj: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
m88k-tdep.obj: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
mac-nat.obj: mac-nat.c $(defs_h) $(gdb_string_h)
main.obj: main.c top.h $(defs_h) $(gdb_string_h)
maint.obj: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
$(expression_h) objfiles.h symfile.h
mdebugread.obj: mdebugread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
$(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
$(gdb_string_h)
mipsm3-nat.obj: mipsm3-nat.c $(defs_h) $(inferior_h)
os9kread.obj: os9kread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
$(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
objfiles.h stabsread.h symfile.h $(symtab_h) \
target.h $(gdb_string_h)
mem-break.obj: mem-break.c $(defs_h)
minsyms.obj: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
$(symtab_h) $(gdb_string_h)
mips-nat.obj: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
mips-tdep.obj: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) language.h objfiles.h symfile.h $(gdb_string_h)
mipsread.obj: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
$(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
$(gdb_string_h)
mipsv4-nat.obj: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
monitor.obj: monitor.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
$(inferior_h) target.h serial.h terminal.h $(gdb_string_h)
news-xdep.obj: news-xdep.c
Onindy.obj: nindy-share/Onindy.c $(wait_h) nindy-share/block_io.h \
nindy-share/env.h
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
nindy.obj: nindy-share/nindy.c $(wait_h) nindy-share/block_io.h \
nindy-share/env.h
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
nlmread.obj: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h \
$(gdb_string_h)
ns32km3-nat.obj: ns32km3-nat.c $(defs_h) $(inferior_h)
ttyflush.obj: nindy-share/ttyflush.c
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
nindy-tdep.obj: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(gdbcore_h)
ns32k-tdep.obj: ns32k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h)
objfiles.obj: objfiles.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
$(symtab_h) $(gdb_string_h)
osfsolib.obj: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
objfiles.h gnu-regex.h symfile.h target.h language.h $(gdb_string_h)
somread.obj: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
gdb-stabs.h objfiles.h symfile.h $(symtab_h) $(gdb_string_h)
somsolib.obj: somsolib.c $(defs_h)
hpux-thread.obj: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
$(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
-I$(srcdir)/osf-share/HP800 -I/usr/include/dce $(srcdir)/hpux-thread.c
hpread.obj: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
gdb-stabs.h objfiles.h symfile.h $(symtab_h) $(gdb_string_h)
parse.obj: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
$(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
$(gdb_string_h) ada-lang.h
ppcbug-rom.obj: ppcbug-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
$(inferior_h) target.h serial.h terminal.h
printcmd.obj: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
$(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
symfile.h $(symtab_h) target.h $(gdb_string_h)
procfs.obj: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
target.h $(gdb_string_h)
pyr-tdep.obj: pyr-tdep.c $(defs_h)
pyr-xdep.obj: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
gnu-regex.obj: gnu-regex.c gnu-regex.h $(defs_h) $(gdb_string_h)
remote-adapt.obj: remote-adapt.c $(wait_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) target.h terminal.h $(gdb_string_h)
remote-arc.obj: remote-arc.c $(gdb_string_h)
remote-array.obj: remote-array.c $(wait_h) $(defs_h) $(gdbcore_h) target.h \
$(gdb_string_h) $(command_h) serial.h monitor.h $(remote_utils_h)
remote-rdp.obj: remote-rdp.c $(wait_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) $(gdb_string_h)
remote-bug.obj: remote-bug.c $(wait_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) target.h terminal.h $(remote_utils_h) $(gdb_string_h)
remote-e7000.obj: remote-e7000.c $(defs_h) $(gdbcore_h) target.h \
$(wait_h) serial.h $(gdb_string_h)
remote-eb.obj: remote-eb.c $(wait_h) $(srcdir)/config/a29k/tm-a29k.h \
$(defs_h) $(gdbcore_h) $(inferior_h) symfile.h target.h terminal.h \
$(gdb_string_h)
remote-es.obj: remote-es.c $(bfd_h) $(wait_h) $(command_h) $(defs_h) \
$(inferior_h) $(remote_utils_h) terminal.h $(gdb_string_h)
remote-evax.obj: remote-evax.c $(bfd_h) $(wait_h) $(command_h) $(defs_h) \
$(inferior_h) $(remote_utils_h) terminal.h $(gdb_string_h) ada-tasks.h
remote-hms.obj: remote-hms.c $(wait_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) serial.h target.h terminal.h $(gdb_string_h)
remote-mips.obj: remote-mips.c $(wait_h) $(defs_h) $(gdbcmd_h) \
$(gdbcore_h) $(inferior_h) serial.h symfile.h target.h
remote-mm.obj: remote-mm.c $(bfd_h) $(wait_h) $(defs_h) $(inferior_h) \
minimon.h target.h terminal.h $(gdb_string_h)
remote-nindy.obj: remote-nindy.c $(floatformat_h) $(wait_h) $(command_h) \
$(defs_h) $(gdbcore_h) $(inferior_h) \
nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
symfile.h
remote-os9k.obj: remote-os9k.c $(defs_h) $(gdbcore_h) $(wait_h) \
$(command_h) monitor.h $(remote_utils_h) $(symtab_h) symfile.h \
objfiles.h gdb-stabs.h $(gdb_string_h)
remote-sim.obj: remote-sim.c $(wait_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) target.h terminal.h $(gdb_string_h)
remote-st.obj: remote-st.c $(wait_h) $(defs_h) $(gdbcore_h) serial.h \
target.h $(gdb_string_h)
remote-udi.obj: remote-udi.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
$(inferior_h) target.h terminal.h $(udiheaders) $(gdb_string_h)
remote-vx.obj: remote-vx.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
$(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
vx-share/xdr_rdb.h gdb-stabs.h objfiles.h symfile.h $(bfd_h) \
$(gdb_string_h)
remote-vx29k.obj: remote-vx29k.c $(wait_h) complaints.h $(defs_h) $(gdbcmd_h) \
$(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
vx-share/xdr_rdb.h $(gdb_string_h)
remote-wiggler.obj: remote-wiggler.c $(wait_h) complaints.h $(defs_h) \
$(gdbcmd_h) $(gdbcore_h) $(inferior_h) target.h
remote-utils.obj: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
$(inferior_h) $(remote_utils_h) $(gdb_string_h)
remote.obj: remote.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
$(inferior_h) $(remote_utils_h) symfile.h terminal.h $(gdb_string_h)
remote-nrom.obj: remote-nrom.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
$(inferior_h) $(remote_utils_h) symfile.h terminal.h
rom68k-rom.obj: rom68k-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
$(inferior_h) target.h serial.h terminal.h
rs6000-nat.obj: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h \
xcoffsolib.h
rs6000-tdep.obj: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
target.h xcoffsolib.h
scm-exp.obj: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
scm-lang.h scm-tags.h
scm-lang.obj: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
scm-lang.h scm-tags.h $(gdb_string_h) $(gdbcore_h)
scm-valprint.obj: $(defs_h) $(value_h) parser-defs.h language.h \
scm-lang.h valprint.h $(gdbcore_h)
ser-go32.obj: ser-go32.c $(defs_h) serial.h
ser-mac.obj: ser-mac.c $(defs_h) serial.h signals.h
ser-tcp.obj: ser-tcp.c $(defs_h) serial.h signals.h $(gdb_string_h)
ser-unix.obj: ser-unix.c $(defs_h) serial.h
serial.obj: serial.c $(defs_h) serial.h $(gdb_string_h)
sh-tdep.obj: sh-tdep.c $(bfd_h) $(dis-asm_h) \
$(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
$(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h)
sh3-rom.obj: sh3-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
$(inferior_h) target.h serial.h terminal.h
mon960-rom.obj: mon960-rom.c monitor.h $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \
$(inferior_h) target.h serial.h terminal.h
solib.obj: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
objfiles.h gnu-regex.h symfile.h target.h $(gdb_string_h)
source.obj: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
$(gdbcore_h) language.h objfiles.h gnu-regex.h symfile.h $(symtab_h) \
$(gdb_string_h)
sparc-nat.obj: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(gdbcore_h) \
target.h
sparc-tdep.obj: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
$(inferior_h) objfiles.h symfile.h target.h $(gdb_string_h)
sparcl-tdep.obj: sparcl-tdep.c $(defs_h) $(gdbcore_h) target.h
dsrec.obj: dsrec.c $(defs_h) srec.h
stabsread.obj: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
$(INCLUDE_DIR)/aout/stab_gnu.h buildsym.h complaints.h $(defs_h) \
$(gdbtypes_h) objfiles.h stabsread.h symfile.h $(symtab_h) \
$(gdb_string_h)
stack.obj: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
language.h target.h $(gdb_string_h)
sun3-nat.obj: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
sun386-nat.obj: sun386-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
symfile.obj: symfile.c $(breakpoint_h) complaints.h $(defs_h) \
$(expression_h) $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) \
language.h objfiles.h symfile.h $(symtab_h) target.h \
$(gdb_string_h)
symm-tdep.obj: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
symm-nat.obj: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
symmisc.obj: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
$(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
$(symtab_h) $(gdb_string_h)
symtab.obj: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \
$(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
gnu-regex.h symfile.h $(symtab_h) target.h $(value_h) \
$(gdb_string_h) ada-lang.h
scache.obj: scache.c $(defs_h) objfiles.h symfile.h $(symtab_h)
tahoe-tdep.obj: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \
$(symtab_h)
target.obj: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
objfiles.h symfile.h target.h $(gdb_string_h)
thread.obj: thread.c $(defs_h) gdbthread.h $(gdbcmd_h)
top.obj: top.c top.h $(bfd_h) $(getopt_h) $(readline_headers) call-cmds.h \
$(defs_h) $(gdbcmd_h) $(inferior_h) language.h signals.h \
$(remote_utils_h) $(gdb_string_h)
typeprint.obj: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
$(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
$(value_h) $(gdb_string_h)
ultra3-nat.obj: ultra3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
ultra3-xdep.obj: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
umax-xdep.obj: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
utils.obj: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
language.h signals.h target.h terminal.h $(readline_headers) \
$(gdb_string_h)
valarith.obj: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
$(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
$(gdb_string_h)
valops.obj: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
$(gdb_string_h) ada-lang.h
valprint.obj: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
$(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
$(value_h) $(gdb_string_h) valprint.h
values.obj: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
$(gdbcore_h) $(gdbtypes_h) $(symtab_h) target.h $(value_h) \
$(gdb_string_h) scm-lang.h
vax-tdep.obj: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
w65-tdep.o : w65-tdep.c $(gdbcore_h)
win32-nat.obj: win32-nat.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
$(gdb_string_h) ada-tasks.h
xdr_ld.obj: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
vx-share/vxWorks.h vx-share/xdr_ld.h
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
xdr_ptrace.obj: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
vx-share/vxWorks.h vx-share/xdr_ptrace.h
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
xdr_rdb.obj: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
vx-share/vxWorks.h vx-share/xdr_rdb.h
$(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
xcoffread.obj: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
$(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
$(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h buildsym.h \
complaints.h $(defs_h) $(gdbtypes_h) objfiles.h stabsread.h symfile.h \
$(symtab_h) partial-stab.h $(gdb_string_h)
xcoffsolib.obj: xcoffsolib.c $(bfd_h) $(defs_h) xcoffsolib.h
z8k-tdep.obj: z8k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) $(frame_h) \
$(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(gdbcore_h)
ada-exp_tab.obj: ada-exp_tab.c ada-lex.c ada-lang.h \
$(defs_h) $(expression_h) \
$(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
$(bfd_h) objfiles.h symfile.h
c-exp_tab.obj: c-exp_tab.c c-lang.h $(defs_h) $(expression_h) \
$(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
$(bfd_h) objfiles.h symfile.h
jv-exp_tab.obj: jv-exp_tab.c jv-lang.h $(defs_h) $(expression_h) \
$(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
$(bfd_h) objfiles.h symfile.h
f-exp_tab.obj: f-exp_tab.c f-lang.h $(defs_h) $(expression_h) \
language.h parser-defs.h $(value_h) $(bfd_h) objfiles.h symfile.h
m2-exp_tab.obj: m2-exp_tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
language.h m2-lang.h parser-defs.h $(symtab_h) $(value_h) \
$(bfd_h) objfiles.h symfile.h
### end of the gdb Makefile.in.
|