mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 23:39:35 +08:00
[gdbserver] Update a couple Makefile rules.
These two are still written in the pre-auto-dependency-tracking style. They probably were written before that, and committed afterwards without adjustment. An easy oversight to make. gdb/gdbserver/ 2013-09-06 Pedro Alves <palves@redhat.com> * Makefile.in (linux-btrace.o, mips-linux-watch.o): Remove explicit header dependencies and use $COMPILE/$POSTCOMPILE.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2013-09-06 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
|
* Makefile.in (linux-btrace.o, mips-linux-watch.o): Remove
|
||||||
|
explicit header dependencies and use $COMPILE/$POSTCOMPILE.
|
||||||
|
|
||||||
2013-09-06 Pedro Alves <palves@redhat.com>
|
2013-09-06 Pedro Alves <palves@redhat.com>
|
||||||
|
|
||||||
* linux-amd64-ipa.c: Include tracepoint.h.
|
* linux-amd64-ipa.c: Include tracepoint.h.
|
||||||
|
@ -561,11 +561,13 @@ waitstatus.o: ../target/waitstatus.c
|
|||||||
$(COMPILE) $<
|
$(COMPILE) $<
|
||||||
$(POSTCOMPILE)
|
$(POSTCOMPILE)
|
||||||
|
|
||||||
linux-btrace.o: ../common/linux-btrace.c $(linux_btrace_h) $(server_h)
|
linux-btrace.o: ../common/linux-btrace.c
|
||||||
$(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
|
$(COMPILE) $<
|
||||||
|
$(POSTCOMPILE)
|
||||||
|
|
||||||
mips-linux-watch.o: ../common/mips-linux-watch.c $(mips_linux_watch_h) $(server_h)
|
mips-linux-watch.o: ../common/mips-linux-watch.c
|
||||||
$(CC) -c $(CPPFLAGS) $(INTERNAL_CFLAGS) $<
|
$(COMPILE) $<
|
||||||
|
$(POSTCOMPILE)
|
||||||
|
|
||||||
# Native object files rules from ../nat
|
# Native object files rules from ../nat
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user