[RFA,07/10] Fix exec.c handling in Makefile

Message ID 20180702201824.15005-8-tom@tromey.com
State New, archived
Headers

Commit Message

Tom Tromey July 2, 2018, 8:18 p.m. UTC
  exec.c ws handled specially in COMMON_OBS, but there doesn't seem to
be a reason for this.  This changes the Makefile to treat exec.c as an
ordinary source file.

2018-07-02  Tom Tromey  <tom@tromey.com>

	* Makefile.in (ALLDEPFILES): Remove exec.c.
	(COMMON_OBS): Remove exec.o.
	(COMMON_SFILES): Add exec.c.
---
 gdb/ChangeLog   | 6 ++++++
 gdb/Makefile.in | 3 +--
 2 files changed, 7 insertions(+), 2 deletions(-)
  

Patch

diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index f4286f84143..047d06b6121 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -1006,6 +1006,7 @@  COMMON_SFILES = \
 	event-loop.c \
 	event-top.c \
 	exceptions.c \
+	exec.c \
 	expprint.c \
 	extension.c \
 	f-lang.c \
@@ -1551,7 +1552,6 @@  TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
 TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
 
 COMMON_OBS = $(DEPFILES) $(CONFIG_OBS) $(YYOBJ) \
-	exec.o \
 	mi/mi-common.o \
 	version.o \
 	xml-builtin.o \
@@ -2208,7 +2208,6 @@  ALLDEPFILES = \
 	bsd-uthread.c \
 	darwin-nat.c \
 	dicos-tdep.c \
-	exec.c \
 	fbsd-nat.c \
 	fbsd-tdep.c \
 	fork-child.c \