--- src.orig/gdb/gdbserver/Makefile.in Tue Mar 6 09:21:43 2001 +++ src.new/gdb/gdbserver/Makefile.in Wed Sep 5 19:40:55 2001 @@ -130,18 +130,20 @@ SFILES = $(srcdir)/low-hppabsd.c $(srcdir)/low-linux.c $(srcdir)/low-lynx.c \ $(srcdir)/low-nbsd.c $(srcdir)/low-sim.c $(srcdir)/low-sparc.c \ $(srcdir)/low-sun3.c $(srcdir)/utils.c $(srcdir)/server.c \ - $(srcdir)/remote-utils.c + $(srcdir)/remote-utils.c ../signals.c DEPFILES = $(GDBSERVER_DEPFILES) SOURCES = $(SFILES) $(ALLDEPFILES) TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS} -OBS = utils.o $(GDBSERVER_DEPFILES) server.o remote-utils.o +OBS = $(srcdir)/utils.o $(GDBSERVER_DEPFILES) server.o remote-utils.o signals.o # 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.o: +%.o: %.c + ${CC} -c ${INTERNAL_CFLAGS} $< +%.o: ../%.c ${CC} -c ${INTERNAL_CFLAGS} $< all: gdbserver gdbreplay @@ -246,6 +248,7 @@ low-sparc.o : $(srcdir)/low-sparc.c $(srcdir)/server.h low-sun3.o : $(srcdir)/low-sun3.c $(srcdir)/server.h low-hppabsd.o : $(srcdir)/low-hppabsd.c $(srcdir)/server.h -utils.o : ${srcdir}/utils.c ${srcdir}/server.h +$(srcdir)/utils.o : ${srcdir}/utils.c ${srcdir}/server.h +signals.o : ../signals.c ../target.h # This is the end of "Makefile.in".