diff options
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 45cddaf..c75ec38 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -855,7 +855,7 @@ common/format.h common/host-defs.h utils.h common/queue.h common/gdb_string.h \ common/linux-osdata.h gdb-dlfcn.h auto-load.h probe.h stap-probe.h \ gdb_bfd.h sparc-ravenscar-thread.h ppc-ravenscar-thread.h common/linux-btrace.h \ ctf.h common/i386-cpuid.h common/i386-gcc-cpuid.h target/resume.h \ -target/wait.h target/waitstatus.h +target/wait.h target/waitstatus.h nat/linux-nat.h nat/linux-waitpid.h # Header files that already have srcdir in them, or which are in objdir. @@ -2037,6 +2037,15 @@ waitstatus.o: ${srcdir}/target/waitstatus.c $(COMPILE) $(srcdir)/target/waitstatus.c $(POSTCOMPILE) +# gdb/nat/ dependencies +# +# Need to explicitly specify the compile rule as make will do nothing +# or try to compile the object file into the sub-directory. + +linux-waitpid.o: ${srcdir}/nat/linux-waitpid.c + $(COMPILE) $(srcdir)/nat/linux-waitpid.c + $(POSTCOMPILE) + # # gdb/tui/ dependencies # |