diff options
author | Jason Molenda <jmolenda@apple.com> | 1998-02-05 01:47:26 +0000 |
---|---|---|
committer | Jason Molenda <jmolenda@apple.com> | 1998-02-05 01:47:26 +0000 |
commit | c7bb1531b8d600fce359dd6ca65a2c3420e65e0c (patch) | |
tree | e66e362aa214ffcdf057031cdad3e6c8185c6fef /gdb/Makefile.in | |
parent | 53b0f196ac7ed30d86b391e6fa46265f0e2f4f5a (diff) | |
download | gdb-c7bb1531b8d600fce359dd6ca65a2c3420e65e0c.zip gdb-c7bb1531b8d600fce359dd6ca65a2c3420e65e0c.tar.gz gdb-c7bb1531b8d600fce359dd6ca65a2c3420e65e0c.tar.bz2 |
* Makefile.in (SFILES): add tracepoint.c.
(LINTFILES): add @CONFIG_SRCS@.
(SOURCES): Ditto.
* configure.in (CONFIG_SRCS): Mirror use of CONFIG_OBS.
* configure: Regenerated.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index f5ee411..d777b19 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -396,11 +396,11 @@ SFILES = bcache.c blockframe.c breakpoint.c buildsym.c c-exp.y \ printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c scm-valprint.c \ source.c stabsread.c stack.c symfile.c symmisc.c \ symtab.c target.c thread.c top.c \ - typeprint.c utils.c \ + tracepoint.c typeprint.c utils.c \ valarith.c valops.c valprint.c values.c \ serial.c ser-unix.c mdebugread.c os9kread.c -LINTFILES = $(SFILES) $(YYFILES) init.c +LINTFILES = $(SFILES) $(YYFILES) @CONFIG_SRCS@ init.c # "system" headers. Using these in dependencies is a rather personal # choice. (-rich, summer 1993) @@ -492,7 +492,7 @@ POSSLIBS = gnu-regex.c gnu-regex.h DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \ $(REMOTE_OBS) $(SIM_OBS) @CONFIG_OBS@ -SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) +SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) @CONFIG_SRCS@ # Don't include YYFILES (*.tab.c) because we already include *.y in SFILES, # and it's more useful to see it in the .y file. TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \ |