X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=gdb%2FMakefile.in;h=bdfdfd65a12353d23130112140010259f95c9ea6;hb=25286543da71d927d59a7479e7e1bd0a1b9e1321;hp=43c0822e97b636130532f12818467d704c25899a;hpb=98d8248937579f8f978d7e663faaf915976caf69;p=deliverable%2Fbinutils-gdb.git diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 43c0822e97..bdfdfd65a1 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -162,8 +162,8 @@ INTERNAL_CFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \ # you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS=' INSTALLED_LIBS=-lbfd -lreadline $(TERMCAP) -lopcodes -lmmalloc \ -liberty $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) -CLIBS = $(BFD) $(READLINE) $(TERMCAP) $(OPCODES) $(MMALLOC) \ - $(LIBIBERTY) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) +CLIBS = $(BFD) $(READLINE) $(OPCODES) $(MMALLOC) \ + $(LIBIBERTY) $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) \ $(BFD) $(READLINE) $(OPCODES) $(MMALLOC) $(LIBIBERTY) @@ -187,6 +187,10 @@ RUNTESTFLAGS= # besides ser-unix.o SER_HARDWIRE=ser-unix.o +# The `remote' debugging target is supported for most architectures, +# but not all (e.g. 960) +REMOTE_O=remote.o + # Host and target-dependent makefile fragments come in here. #### # End of host and target-dependent makefile fragments @@ -287,10 +291,10 @@ SFILES = blockframe.c breakpoint.c buildsym.c c-exp.y c-lang.c \ dbxread.c demangle.c dwarfread.c elfread.c environ.c eval.c expprint.c \ findvar.c gdbtypes.c infcmd.c inflow.c infrun.c language.c putenv.c \ m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \ - mem-break.c minsyms.c mipsread.c objfiles.c parse.c printcmd.c \ - remote.c source.c stabsread.c stack.c symfile.c symmisc.c symtab.c \ - target.c typeprint.c utils.c valarith.c valops.c valprint.c values.c \ - serial.c ser-unix.c + mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \ + printcmd.c remote.c source.c stabsread.c stack.c symfile.c symmisc.c \ + symtab.c target.c typeprint.c utils.c valarith.c valops.c valprint.c \ + values.c serial.c ser-unix.c # Files that are not source code, but need to go into # gdb-$(VERSION).tar.Z. @@ -300,7 +304,7 @@ NONSRC = Makefile.in munch configure.in ChangeLog ChangeLog-9091 \ Projects .gdbinit COPYING $(YYFILES) copying.c copying.awk \ saber.suppress standalone.c stuff.c kdb-start.c gcc.patch \ nindy-share/Makefile nindy-share/VERSION nindy-share/README \ - vx-share/README 29k-share/udi/README config/convex/Convex.notes + vx-share/README 29k-share/README config/convex/Convex.notes # All source files that lint should look at LINTFILES = $(SFILES) $(YYFILES) init.c @@ -363,11 +367,11 @@ HFILES = buildsym.h call-cmds.h defs.h environ.h $(gdbcmd_h) \ config/m68k/xm-m68k.h config/sparc/xm-sparc.h config/xm-sysv4.h \ config/vax/xm-vax.h config/nm-trash.h $(udiheaders) \ 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/demux.h \ - nindy-share/env.h nindy-share/stop.h nindy-share/ttycntl.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 + vx-share/xdr_ptrace.h vx-share/xdr_rdb.h thread.h # GDB "info" files, which should be included in their entirety INFOFILES = gdb.info* @@ -386,7 +390,7 @@ TARDIRS = doc sparclite # variables analogous to SER_HARDWIRE which get defaulted in this # Makefile.in -DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) +DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) $(REMOTE_O) SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) # Don't include YYFILES (*.tab.c) because we already include *.y in SFILES, @@ -397,15 +401,16 @@ TARFILES = $(SFILES) $(HFILES) $(NONSRC) $(ALLDEPFILES) $(ALLCONFIG) \ $(ALLPARAM) $(INFOFILES) $(POSSLIBS) $(REMOTE_EXAMPLES) -OBS = version.o main.o blockframe.o breakpoint.o findvar.o stack.o \ +OBS = version.o main.o blockframe.o breakpoint.o findvar.o stack.o thread.o \ source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \ - symtab.o symfile.o symmisc.o infcmd.o infrun.o remote.o command.o \ + symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \ utils.o expprint.o environ.o gdbtypes.o copying.o $(DEPFILES) \ mem-break.o target.o putenv.o parse.o language.o $(YYOBJ) buildsym.o \ objfiles.o minsyms.o maint.o demangle.o dbxread.o coffread.o elfread.o \ dwarfread.o mipsread.o stabsread.o core.o c-lang.o ch-lang.o m2-lang.o \ complaints.o typeprint.o c-typeprint.o ch-typeprint.o m2-typeprint.o \ - c-valprint.o cp-valprint.o ch-valprint.o m2-valprint.o serial.o + c-valprint.o cp-valprint.o ch-valprint.o m2-valprint.o nlmread.o \ + serial.o RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES) @@ -606,7 +611,7 @@ make-proto-gdb-1: $(TARFILES) $(TARDIRS) gdb.info cd $$i; \ ln -s $${rootme}/$$i/* .; \ rm -rf SCCS CVS CVS.adm RCS config.status; \ - if test -f Makefile.in; then rm Makefile; else true; fi;); \ + if test -f Makefile.in; then rm -f Makefile; else true; fi;); \ done ; \ for i in `echo $(TARFILES)`; do \ (cd proto-gdb.dir ; \ @@ -794,7 +799,8 @@ unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET : ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \ a29k-pinsn.c a29k-tdep.c a68v-nat.c altos-xdep.c arm-convert.s \ arm-pinsn.c arm-tdep.c arm-xdep.c convex-pinsn.c convex-tdep.c \ - convex-xdep.c core-svr4.c coredep.c corelow.c exec.c fork-child.c \ + convex-xdep.c core-svr4.c coredep.c corelow.c delta68-nat.c exec.c \ + fork-child.c \ go32-xdep.c gould-pinsn.c gould-xdep.c h8300-tdep.c h8500-tdep.c \ hp300ux-nat.c hppa-pinsn.c hppa-tdep.c hppab-nat.c hppah-nat.c \ i386-pinsn.c i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c \ @@ -802,14 +808,14 @@ ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \ infptrace.c inftarg.c irix4-nat.c isi-xdep.c m68k-pinsn.c m68k-tdep.c \ m88k-nat.c m88k-pinsn.c m88k-tdep.c mips-nat.c mips-pinsn.c \ mips-tdep.c news-xdep.c nindy-share/Onindy.c nindy-share/nindy.c \ - nindy-share/ttybreak.c nindy-share/ttyflush.c nindy-tdep.c \ + nindy-share/ttyflush.c nindy-tdep.c \ ns32k-pinsn.c paread.c procfs.c pyr-pinsn.c pyr-tdep.c pyr-xdep.c \ remote-adapt.c remote-eb.c remote-es.c remote-hms.c remote-mips.c \ remote-mm.c remote-monitor.c remote-nindy.c remote-sim.c remote-st.c \ remote-udi.c remote-vx.c remote-z8k.c rs6000-nat.c rs6000-pinsn.c \ rs6000-tdep.c ser-go32.c ser-tcp.c sh-tdep.c solib.c sparc-nat.c \ sparc-pinsn.c sparc-tdep.c sun3-nat.c sun386-nat.c symm-tdep.c \ - symm-xdep.c tahoe-pinsn.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \ + symm-nat.c tahoe-pinsn.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \ vax-pinsn.c vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \ xcoffexec.c xcoffread.c xcoffsolib.c z8k-tdep.c @@ -887,7 +893,8 @@ ALLCONFIG = config/a29k/a29k-kern.mt config/a29k/a29k-udi.mt \ config/i386/i386sol2.mh config/i386/i386sol2.mt config/i386/i386v.mh \ config/i386/i386v.mt config/i386/i386v32.mh config/i386/i386v4.mh \ config/i386/i386v4.mt config/i386/linux.mh config/i386/linux.mt \ - config/i386/ncr3000.mh config/i386/ncr3000.mt config/i386/sun386.mh \ + config/i386/ncr3000.mh config/i386/ncr3000.mt config/i386/ptx.mh \ + config/i386/sun386.mh \ config/i386/sun386.mt config/i386/symmetry.mh config/i386/symmetry.mt \ config/i960/nindy960.mt config/i960/vxworks960.mt config/m68k/3b1.mh \ config/m68k/3b1.mt config/m68k/altos.mh config/m68k/altos.mt \ @@ -997,6 +1004,8 @@ dbxread.o: dbxread.c $(breakpoint_h) buildsym.h $(command_h) \ $(gdbtypes_h) language.h objfiles.h partial-stab.h stabsread.h \ symfile.h $(symtab_h) target.h +delta68-nat.o: delta68-nat.c $(defs_h) + demangle.o: demangle.c $(defs_h) $(gdbcmd_h) dwarfread.o: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \ @@ -1124,17 +1133,17 @@ mipsread.o: mipsread.c buildsym.h complaints.h $(defs_h) \ news-xdep.o: news-xdep.c Onindy.o: nindy-share/Onindy.c $(wait_h) nindy-share/block_io.h \ - nindy-share/env.h nindy-share/ttycntl.h + nindy-share/env.h $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c nindy.o: nindy-share/nindy.c $(wait_h) nindy-share/block_io.h \ - nindy-share/env.h nindy-share/ttycntl.h + nindy-share/env.h $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c -ttybreak.o: nindy-share/ttybreak.c nindy-share/ttycntl.h - $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttybreak.c +nlmread.o: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \ + gdb-stabs.h objfiles.h symfile.h $(symtab_h) -ttyflush.o: nindy-share/ttyflush.c nindy-share/ttycntl.h +ttyflush.o: nindy-share/ttyflush.c $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h) @@ -1166,6 +1175,8 @@ pyr-pinsn.o: pyr-pinsn.c $(OP_INCLUDE)/pyr.h $(defs_h) $(gdbcore_h) \ pyr-tdep.o: pyr-tdep.c $(defs_h) pyr-xdep.o: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h) +regex.o: regex.c regex.h + remote-adapt.o: remote-adapt.c $(wait_h) $(defs_h) $(gdbcore_h) \ $(inferior_h) target.h terminal.h @@ -1188,8 +1199,8 @@ remote-monitor.o: remote-monitor.c $(wait_h) $(command_h) $(defs_h) \ $(gdbcore_h) monitor.h serial.h target.h remote-nindy.o: remote-nindy.c $(ieee-float_h) $(wait_h) $(command_h) \ - $(defs_h) $(gdbcore_h) $(inferior_h) nindy-share/demux.h \ - nindy-share/env.h nindy-share/stop.h nindy-share/ttycntl.h \ + $(defs_h) $(gdbcore_h) $(inferior_h) \ + nindy-share/env.h nindy-share/stop.h \ symfile.h target.h remote-sim.o: remote-sim.c $(wait_h) $(defs_h) $(gdbcore_h) \ @@ -1255,7 +1266,7 @@ symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \ language.h objfiles.h symfile.h $(symtab_h) target.h symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) -symm-xdep.o: symm-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h) +symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \ $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \ @@ -1271,6 +1282,8 @@ tahoe-pinsn.o: tahoe-pinsn.c $(OP_INCLUDE)/tahoe.h $(defs_h) \ target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \ objfiles.h symfile.h target.h +thread.o: thread.c $(defs_h) thread.h + typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \ $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \ $(value_h)