OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [gdb-5.0/] [gdb/] [Makefile.in] - Blame information for rev 1774

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 104 markom
# Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000
2
# Free Software Foundation, Inc.
3
 
4
# This file is part of GDB.
5
 
6
# This program is free software; you can redistribute it and/or modify
7
# it under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 2 of the License, or
9
# (at your option) any later version.
10
#
11
# This program is distributed in the hope that it will be useful,
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
# GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License
17
# along with this program; if not, write to the Free Software
18
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
 
20
prefix = @prefix@
21
exec_prefix = @exec_prefix@
22
 
23
host_alias = @host_alias@
24
target_alias = @target_alias@
25
program_transform_name = @program_transform_name@
26
bindir = @bindir@
27
libdir = @libdir@
28
tooldir = $(libdir)/$(target_alias)
29
 
30
datadir = @datadir@
31
mandir = @mandir@
32
man1dir = $(mandir)/man1
33
man2dir = $(mandir)/man2
34
man3dir = $(mandir)/man3
35
man4dir = $(mandir)/man4
36
man5dir = $(mandir)/man5
37
man6dir = $(mandir)/man6
38
man7dir = $(mandir)/man7
39
man8dir = $(mandir)/man8
40
man9dir = $(mandir)/man9
41
infodir = @infodir@
42
htmldir = $(prefix)/html
43
includedir = @includedir@
44
 
45
# This can be referenced by `INTLDEPS' as computed by CY_GNU_GETTEXT.
46
top_builddir = .
47
 
48
SHELL = @SHELL@
49
EXEEXT = @EXEEXT@
50
 
51
AWK = @AWK@
52
LN_S = @LN_S@
53
 
54
INSTALL = @INSTALL@
55
INSTALL_PROGRAM = @INSTALL_PROGRAM@
56
INSTALL_DATA = @INSTALL_DATA@
57
 
58
AR = @AR@
59
AR_FLAGS = qv
60
RANLIB = @RANLIB@
61
DLLTOOL = @DLLTOOL@
62
WINDRES = @WINDRES@
63
MIG = @MIG@
64
 
65
# If the user configured GDB to include the TUI, the name of the tui
66
# library goes here.
67
TUI_LIBRARY = @TUI_LIBRARY@
68
 
69
# If the user configured GDB to include the TUI, the all-tui
70
# target goes here.
71
BUILD_TUI = @BUILD_TUI@
72
 
73
# Flags that describe where you can find the termcap library.
74
# This can be overridden in the host Makefile fragment file.
75
TERMCAP = @TERM_LIB@
76
 
77
# If you are compiling with GCC, make sure that either 1) You have the
78
# fixed include files where GCC can reach them, or 2) You use the
79
# -traditional flag.  Otherwise the ioctl calls in inflow.c
80
# will be incorrectly compiled.  The "fixincludes" script in the gcc
81
# distribution will fix your include files up.
82
CC=@CC@
83
 
84
# Directory containing source files.
85
srcdir = @srcdir@
86
VPATH = @srcdir@
87
 
88
YACC=@YACC@
89
 
90
YLWRAP = $(srcdir)/../ylwrap
91
 
92
# where to find makeinfo, preferably one designed for texinfo-2
93
MAKEINFO=makeinfo
94
 
95
MAKEHTML = texi2html
96
 
97
MAKEHTMLFLAGS = -glossary -menu -split_chapter
98
 
99
# Set this up with gcc if you have gnu ld and the loader will print out
100
# line numbers for undefined references.
101
#CC_LD=gcc -static
102
CC_LD=$(CC)
103
 
104
# Where is our "include" directory?  Typically $(srcdir)/../include.
105
# This is essentially the header file directory for the library
106
# routines in libiberty.
107
INCLUDE_DIR =  $(srcdir)/../include
108
INCLUDE_CFLAGS = -I$(INCLUDE_DIR)
109
 
110
# Where is the "-liberty" library?  Typically in ../libiberty.
111
LIBIBERTY = ../libiberty/libiberty.a
112
 
113
# Configured by the --with-mmalloc option to configure.
114
MMALLOC = @MMALLOC@
115
MMALLOC_CFLAGS = @MMALLOC_CFLAGS@
116
 
117
# We are using our own version of REGEX now to be consistent across
118
# machines.
119
REGEX = @REGEX@
120
REGEX_CFLAGS = @REGEX_CFLAGS@
121
 
122
# Where is the BFD library?  Typically in ../bfd.
123
BFD_DIR = ../bfd
124
BFD = $(BFD_DIR)/libbfd.a
125
BFD_SRC = $(srcdir)/$(BFD_DIR)
126
BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
127
 
128
# Where is the READLINE library?  Typically in ../readline.
129
READLINE_DIR = ../readline
130
READLINE = $(READLINE_DIR)/libreadline.a
131
READLINE_SRC = $(srcdir)/$(READLINE_DIR)
132
READLINE_CFLAGS = -I$(READLINE_SRC)/..
133
 
134
WARN_CFLAGS = @WARN_CFLAGS@
135
WERROR_CFLAGS = @WERROR_CFLAGS@
136
GDB_WARN_CFLAGS = $(WARN_CFLAGS)
137
GDB_WERROR_CFLAGS = $(WERROR_CFLAGS)
138
 
139
# Where is the INTL library?  Typically in ../intl.
140
INTL_DIR = ../intl
141
INTL = @INTLLIBS@
142
INTL_DEPS = @INTLDEPS@
143
INTL_SRC = $(srcdir)/$(INTL_DIR)
144
INTL_CFLAGS = -I$(INTL_DIR) -I$(INTL_SRC)
145
 
146
# Where is the TUI library?  Typically in tui/.
147
TUI_DIR=tui
148
TUI_SRC = $(srcdir)/$(TUI_DIR)
149
TUI_CFLAGS= -I$(TUI_SRC)
150
 
151
#
152
# MI sub directory definitons
153
#
154
SUBDIR_MI_OBS = \
155
        mi-out.o mi-console.o \
156
        mi-cmds.o mi-cmd-var.o mi-cmd-break.o mi-cmd-stack.o \
157
        mi-cmd-disas.o \
158
        mi-main.o mi-parse.o mi-getopt.o
159
SUBDIR_MI_SRCS = \
160
        mi/mi-out.c mi/mi-console.c \
161
        mi/mi-cmds.c \
162
        mi/mi-cmd-var.c mi/mi-cmd-break.c mi/mi-cmd-stack.c \
163
        mi/mi-cmd-disas.c \
164
        mi/mi-main.c mi/mi-parse.c mi/mi-getopt.c
165
SUBDIR_MI_DEPS =
166
SUBDIR_MI_INITS = \
167
        mi/mi-cmds.c mi/mi-parse.c mi/mi-main.c
168
SUBDIR_MI_LDFLAGS=
169
SUBDIR_MI_CFLAGS= \
170
        -DUI_OUT=1
171
SUBDIR_MI_ALL=
172
SUBDIR_MI_CLEAN=
173
SUBDIR_MI_INSTALL=
174
SUBDIR_MI_UNINSTALL=
175
 
176
# Opcodes currently live in one of two places.  Either they are in the
177
# opcode library, typically ../opcodes, or they are in a header file
178
# in INCLUDE_DIR.
179
# Where is the "-lopcodes" library, with (some of) the opcode tables and
180
# disassemblers?
181
OPCODES = ../opcodes/libopcodes.a
182
# Where are the other opcode tables which only have header file
183
# versions?
184
OP_INCLUDE = $(INCLUDE_DIR)/opcode
185
OPCODES_CFLAGS = -I$(OP_INCLUDE)
186
 
187
# The simulator is usually nonexistent; targets that include one
188
# should set this to list all the .o or .a files to be linked in.
189
SIM =
190
 
191
WIN32LIBS = @WIN32LIBS@
192
 
193
# Where is the TCL library?  Typically in ../tcl.
194
LIB_INSTALL_DIR = $(libdir)
195
# This variable is needed when doing dynamic linking.
196
LIB_RUNTIME_DIR = $(libdir)
197
TCL = @TCL_LD_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@
198
TCL_CFLAGS = @TCLHDIR@
199
TCL_DEPS =
200
GDBTKLIBS = @GDBTKLIBS@
201
# Extra flags that the GDBTK files need:
202
GDBTK_CFLAGS = @GDBTK_CFLAGS@
203
 
204
# Where is the TK library?  Typically in ../tk.
205
TK = @TK_BUILD_LIB_SPEC@
206
TK_CFLAGS = @TKHDIR@ @TK_BUILD_INCLUDES@
207
TK_DEPS =
208
 
209
# Where is Itcl?  Typically in ../itcl/itcl.
210
ITCL_CFLAGS = @ITCLHDIR@
211
ITCL = @ITCLLIB@
212
ITCL_DEPS = @ITCL_DEPS@
213
 
214
# Where is Itk?  Typically in ../itcl/itk.
215
ITK_CFLAGS = @ITKHDIR@
216
ITK = @ITKLIB@
217
ITK_DEPS = @ITK_DEPS@
218
 
219
# Where is Tix?  Typically in ../tix.
220
TIX_CFLAGS = @TIXHDIR@
221
TIX = @TIXLIB@
222
TIX_DEPS = @TIX_DEPS@
223
 
224
X11_CFLAGS = @TK_XINCLUDES@
225
X11_LDFLAGS =
226
X11_LIBS =
227
 
228
WIN32LDAPP = @WIN32LDAPP@
229
 
230
LIBGUI = @LIBGUI@
231
GUI_CFLAGS_X = @GUI_CFLAGS_X@
232
IDE_CFLAGS=$(GUI_CFLAGS_X) $(IDE_CFLAGS_X)
233
SUBDIR_GDBTK_ALL= all-gdbtk
234
SUBDIR_GDBTK_CLEAN= clean-gdbtk
235
SUBDIR_GDBTK_INSTALL= install-gdbtk
236
SUBDIR_GDBTK_UNINSTALL=
237
 
238
CONFIG_OBS= @CONFIG_OBS@
239
CONFIG_SRCS= @CONFIG_SRCS@
240
CONFIG_DEPS= @CONFIG_DEPS@
241
CONFIG_INITS= @CONFIG_INITS@
242
CONFIG_LDFLAGS = @CONFIG_LDFLAGS@
243
ENABLE_CFLAGS= @ENABLE_CFLAGS@
244
CONFIG_ALL= @CONFIG_ALL@
245
CONFIG_CLEAN= @CONFIG_CLEAN@
246
CONFIG_CLEAN= @CONFIG_CLEAN@
247
CONFIG_INSTALL = @CONFIG_INSTALL@
248
CONFIG_UNINSTALL = @CONFIG_UNINSTALL@
249
 
250
# -I. for config files.
251
# -I$(srcdir) for gdb internal headers and possibly for gnu-regex.h also.
252
# -I$(srcdir)/config for more generic config files.
253
 
254
# It is also possible that you will need to add -I/usr/include/sys if
255
# your system doesn't have fcntl.h in /usr/include (which is where it
256
# should be according to Posix).
257
DEFS = @DEFS@
258
GDB_CFLAGS = -I. -I$(srcdir) -I$(srcdir)/config $(DEFS)
259
 
260
# M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS
261
# from the config directory.
262
GLOBAL_CFLAGS = $(MT_CFLAGS) $(MH_CFLAGS)
263
#PROFILE_CFLAGS = -pg
264
 
265
# CFLAGS is specifically reserved for setting from the command line
266
# when running make.  I.E.  "make CFLAGS=-Wmissing-prototypes".
267
CFLAGS = @CFLAGS@
268
 
269
# Need to pass this to testsuite for "make check".  Probably should be
270
# consistent with top-level Makefile.in and gdb/testsuite/Makefile.in
271
# so "make check" has the same result no matter where it is run.
272
CXXFLAGS = -g -O
273
 
274
# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
275
INTERNAL_WARN_CFLAGS = \
276
        $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) \
277
        $(GDB_CFLAGS) $(OPCODES_CFLAGS) $(READLINE_CFLAGS) \
278
        $(BFD_CFLAGS) $(MMALLOC_CFLAGS) $(INCLUDE_CFLAGS) \
279
        $(INTL_CFLAGS) $(TUI_CFLAGS) $(ENABLE_CFLAGS) \
280
        $(REGEX_CFLAGS) $(GDB_WARN_CFLAGS)
281
INTERNAL_CFLAGS = $(INTERNAL_WARN_CFLAGS) $(GDB_WERROR_CFLAGS)
282
 
283
# LDFLAGS is specifically reserved for setting from the command line
284
# when running make.
285
 
286
# Profiling options need to go here to work.
287
# I think it's perfectly reasonable for a user to set -pg in CFLAGS
288
# and have it work; that's why CFLAGS is here.
289
INTERNAL_LDFLAGS = $(CFLAGS) $(GLOBAL_CFLAGS) $(PROFILE_CFLAGS) $(LDFLAGS) $(CONFIG_LDFLAGS) @HLDFLAGS@
290
HLDENV = @HLDENV@
291
 
292
# If your system is missing alloca(), or, more likely, it's there but
293
# it doesn't work, then refer to libiberty.
294
 
295
# Libraries and corresponding dependencies for compiling gdb.
296
# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
297
# TERMCAP comes after readline, since readline depends on it.
298
# MMALLOC comes after anything else that might want an allocation function.
299
# LIBIBERTY appears twice on purpose.
300
# If you have the Cygnus libraries installed,
301
# you can use 'CLIBS=$(INSTALLED_LIBS)' 'CDEPS='
302
INSTALLED_LIBS=-lbfd -lreadline -lopcodes -liberty \
303
        $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
304
        -lmmalloc -lintl -liberty
305
CLIBS = $(SIM) $(BFD) $(READLINE) $(OPCODES) $(INTL) $(LIBIBERTY) \
306
        $(TERMCAP) $(XM_CLIBS) $(TM_CLIBS) $(NAT_CLIBS) $(GDBTKLIBS) @LIBS@ \
307
        $(MMALLOC) $(LIBIBERTY) $(WIN32LIBS)
308
CDEPS = $(XM_CDEPS) $(TM_CDEPS) $(NAT_CDEPS) $(SIM) $(BFD) $(READLINE) \
309
        $(OPCODES) $(MMALLOC) $(INTL_DEPS) $(LIBIBERTY) $(CONFIG_DEPS)
310
 
311
ADD_FILES = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
312
ADD_DEPS = $(REGEX) $(XM_ADD_FILES) $(TM_ADD_FILES) $(NAT_ADD_FILES)
313
 
314
VERSION = 5.0
315
DIST=gdb
316
 
317
LINT=/usr/5bin/lint
318
LINTFLAGS= $(BFD_CFLAGS)
319
 
320
RUNTEST = `if [ -f $${rootsrc}/../dejagnu/runtest ] ; then \
321
                echo $${rootsrc}/../dejagnu/runtest ; else echo runtest; \
322
           fi`
323
 
324
RUNTESTFLAGS=
325
 
326
# This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
327
# interface to the serial port.  Hopefully if get ported to OS/2, VMS,
328
# etc., then there will be (as part of the C library or perhaps as
329
# part of libiberty) a POSIX interface.  But at least for now the
330
# host-dependent makefile fragment might need to use something else
331
# besides ser-unix.o
332
SER_HARDWIRE = ser-unix.o ser-pipe.o
333
 
334
# The `remote' debugging target is supported for most architectures,
335
# but not all (e.g. 960)
336
REMOTE_OBS = remote.o dcache.o remote-utils.o tracepoint.o ax-general.o ax-gdb.o
337
 
338
# This is remote-sim.o if a simulator is to be linked in.
339
SIM_OBS =
340
 
341
ANNOTATE_OBS = annotate.o
342
 
343
# Host and target-dependent makefile fragments come in here.
344
@host_makefile_frag@
345
@target_makefile_frag@
346
# End of host and target-dependent makefile fragments
347
 
348
# Possibly ignore the simulator.  If the simulator is being ignored,
349
# these expand into SIM= and SIM_OBJ=, overriding the entries from
350
# target_makefile_frag
351
#
352
@IGNORE_SIM@
353
@IGNORE_SIM_OBS@
354
 
355
FLAGS_TO_PASS = \
356
        "prefix=$(prefix)" \
357
        "exec_prefix=$(exec_prefix)" \
358
        "against=$(against)" \
359
        "AR=$(AR)" \
360
        "AR_FLAGS=$(AR_FLAGS)" \
361
        "CC=$(CC)" \
362
        "CFLAGS=$(CFLAGS)" \
363
        "CHILLFLAGS=$(CHILLFLAGS)" \
364
        "CHILL=$(CHILL)" \
365
        "CHILL_LIB=$(CHILL_LIB)" \
366
        "CXX=$(CXX)" \
367
        "CXXFLAGS=$(CXXFLAGS)" \
368
        "DLLTOOL=$(DLLTOOL)" \
369
        "RANLIB=$(RANLIB)" \
370
        "MAKEINFO=$(MAKEINFO)" \
371
        "MAKEHTML=$(MAKEHTML)" \
372
        "MAKEHTMLFLAGS=$(MAKEHTMLFLAGS)" \
373
        "INSTALL=$(INSTALL)" \
374
        "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
375
        "INSTALL_DATA=$(INSTALL_DATA)" \
376
        "RUNTEST=$(RUNTEST)" \
377
        "RUNTESTFLAGS=$(RUNTESTFLAGS)"
378
 
379
# Flags that we pass when building the testsuite.
380
 
381
# empty for native, $(target_alias)/ for cross
382
target_subdir = @target_subdir@
383
 
384
CC_FOR_TARGET = ` \
385
  if [ -f $${rootme}/../gcc/xgcc ] ; then \
386
    if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
387
      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
388
    else \
389
      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
390
    fi; \
391
  else \
392
    if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
393
      echo $(CC); \
394
    else \
395
      t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
396
    fi; \
397
  fi`
398
 
399
CXX = gcc
400
CXX_FOR_TARGET = ` \
401
  if [ -f $${rootme}/../gcc/xgcc ] ; then \
402
    if [ -f $${rootme}/../$(target_subdir)newlib/Makefile ] ; then \
403
      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -idirafter $${rootme}/$(target_subdir)newlib/targ-include -idirafter $${rootsrc}/../$(target_subdir)newlib/libc/include -nostdinc -B$${rootme}/../$(target_subdir)newlib/; \
404
    else \
405
      echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
406
    fi; \
407
  else \
408
    if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
409
      echo $(CXX); \
410
    else \
411
      t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
412
    fi; \
413
  fi`
414
 
415
CHILLFLAGS = $(CFLAGS)
416
CHILL = gcc
417
CHILL_FOR_TARGET = ` \
418
  if [ -f $${rootme}/../gcc/Makefile ] ; then \
419
    echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../gcc/ch/runtime/; \
420
  else \
421
    if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
422
      echo $(CC); \
423
    else \
424
      t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
425
    fi; \
426
  fi`
427
CHILL_LIB = ` \
428
  if [ -f $${rootme}/../gcc/ch/runtime/libchill.a ] ; then \
429
    echo $${rootme}/../gcc/ch/runtime/chillrt0.o \
430
      $${rootme}/../gcc/ch/runtime/libchill.a; \
431
  else \
432
      echo -lchill; \
433
  fi`
434
 
435
# The use of $$(x_FOR_TARGET) reduces the command line length by not
436
# duplicating the lengthy definition.
437
TARGET_FLAGS_TO_PASS = \
438
        "prefix=$(prefix)" \
439
        "exec_prefix=$(exec_prefix)" \
440
        "against=$(against)" \
441
        'CC=$$(CC_FOR_TARGET)' \
442
        "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
443
        "CFLAGS=$(CFLAGS)" \
444
        "CHILLFLAGS=$(CHILLFLAGS)" \
445
        'CHILL=$$(CHILL_FOR_TARGET)' \
446
        "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
447
        "CHILL_LIB=$(CHILL_LIB)" \
448
        'CXX=$$(CXX_FOR_TARGET)' \
449
        "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
450
        "CXXFLAGS=$(CXXFLAGS)" \
451
        "INSTALL=$(INSTALL)" \
452
        "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
453
        "INSTALL_DATA=$(INSTALL_DATA)" \
454
        "MAKEINFO=$(MAKEINFO)" \
455
        "MAKEHTML=$(MAKEHTML)" \
456
        "RUNTEST=$(RUNTEST)" \
457
        "RUNTESTFLAGS=$(RUNTESTFLAGS)"
458
 
459
# All source files that go into linking GDB.
460
# Links made at configuration time should not be specified here, since
461
# SFILES is used in building the distribution archive.
462
 
463
SFILES = ax-general.c ax-gdb.c bcache.c blockframe.c breakpoint.c \
464
        buildsym.c c-exp.y c-lang.c c-typeprint.c c-valprint.c \
465
        ch-exp.c ch-lang.c ch-typeprint.c ch-valprint.c coffread.c \
466
        command.c complaints.c corefile.c cp-valprint.c dbxread.c \
467
        demangle.c dwarfread.c dwarf2read.c elfread.c environ.c eval.c \
468
        event-loop.c event-top.c \
469
        expprint.c f-exp.y f-lang.c f-typeprint.c f-valprint.c \
470
        findvar.c gdbarch.c arch-utils.c gdbtypes.c \
471
        inf-loop.c infcmd.c inflow.c infrun.c language.c \
472
        kod.c kod-cisco.c \
473
        ui-out.c cli-out.c \
474
        varobj.c wrapper.c \
475
        jv-exp.y jv-lang.c jv-valprint.c jv-typeprint.c \
476
        m2-exp.y m2-lang.c m2-typeprint.c m2-valprint.c main.c maint.c \
477
        mem-break.c minsyms.c mipsread.c nlmread.c objfiles.c parse.c \
478
        printcmd.c remote.c remote-nrom.c scm-exp.c scm-lang.c \
479
        scm-valprint.c source.c stabsread.c stack.c symfile.c \
480
        symmisc.c symtab.c target.c thread.c top.c tracepoint.c \
481
        typeprint.c utils.c valarith.c valops.c valprint.c values.c \
482
        serial.c ser-unix.c mdebugread.c os9kread.c \
483
        tui/tui.c tui/tui.h tui/tuiCommand.c tui/tuiCommand.h \
484
        tui/tuiData.c tui/tuiData.h tui/tuiDataWin.c tui/tuiDataWin.h \
485
        tui/tuiDisassem.c tui/tuiDisassem.h tui/tuiGeneralWin.c \
486
        tui/tuiGeneralWin.h tui/tuiIO.c tui/tuiIO.h tui/tuiLayout.c \
487
        tui/tuiLayout.h tui/tuiRegs.c tui/tuiRegs.h tui/tuiSource.c \
488
        tui/tuiSource.h tui/tuiSourceWin.c tui/tuiSourceWin.h \
489
        tui/tuiStack.c tui/tuiStack.h tui/tuiWin.c tui/tuiWin.h \
490
        tui/tui-file.h tui/tui-file.c \
491
        ui-file.h ui-file.c
492
 
493
LINTFILES = $(SFILES) $(YYFILES) $(CONFIG_SRCS) init.c
494
 
495
# "system" headers.  Using these in dependencies is a rather personal
496
# choice. (-rich, summer 1993)
497
# (Why would we not want to depend on them?  If one of these changes in a
498
# non-binary-compatible way, it is a real pain to remake the right stuff
499
# without these dependencies -kingdon, 13 Mar 1994)
500
getopt_h =      $(INCLUDE_DIR)/getopt.h
501
floatformat_h = $(INCLUDE_DIR)/floatformat.h
502
bfd_h =         $(BFD_DIR)/bfd.h
503
dis-asm_h =     $(INCLUDE_DIR)/dis-asm.h
504
remote-sim_h =  $(INCLUDE_DIR)/remote-sim.h
505
 
506
dcache_h = dcache.h
507
remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h $(remote-sim_h)
508
 
509
 
510
readline_headers = \
511
        $(READLINE_SRC)/chardefs.h \
512
        $(READLINE_SRC)/history.h \
513
        $(READLINE_SRC)/keymaps.h \
514
        $(READLINE_SRC)/readline.h
515
 
516
udiheaders = \
517
        $(srcdir)/29k-share/udi/udiproc.h \
518
        $(srcdir)/29k-share/udi/udiphcfg.h \
519
        $(srcdir)/29k-share/udi/udiphunix.h \
520
        $(srcdir)/29k-share/udi/udiptcfg.h \
521
        $(srcdir)/29k-share/udi/udipt29k.h \
522
        $(srcdir)/29k-share/udi/udisoc.h
523
 
524
gdbcore_h =     gdbcore.h $(bfd_h)
525
 
526
frame_h =       frame.h
527
symtab_h =      symtab.h bcache.h
528
gdbtypes_h =    gdbtypes.h
529
expression_h =  expression.h
530
value_h =       value.h $(symtab_h) $(gdbtypes_h) $(expression_h)
531
 
532
breakpoint_h =  breakpoint.h $(frame_h) $(value_h)
533
 
534
command_h =     command.h
535
gdbcmd_h =      gdbcmd.h $(command_h)
536
 
537
call_cmds_h =   call-cmds.h
538
defs_h =        defs.h xm.h tm.h nm.h config.status config.h gdbarch.h ui-file.h
539
 
540
top_h =         top.h
541
inferior_h =    inferior.h $(breakpoint_h)
542
tracepoint_h =  tracepoint.h
543
ax_h =          ax.h
544
event_loop_h =  event-loop.h
545
event_top_h =   event-top.h
546
inf_loop_h =    inf-loop.h
547
remote_h =      remote.h
548
version_h =     version.h
549
ui_out_h =      ui-out.h
550
cli_out_h =     cli-out.h
551
arch_utils_h = arch-utils.h
552
 
553
# Header files that need to have srcdir added.  Note that in the cases
554
# where we use a macro like $(gdbcmd_h), things are carefully arranged
555
# so that each .h file is listed exactly once (M-x tags-search works
556
# wrong if TAGS has files twice).  Because this is tricky to get
557
# right, it is probably easiest just to list .h files here directly.
558
 
559
HFILES_NO_SRCDIR = bcache.h buildsym.h call-cmds.h coff-solib.h defs.h \
560
        dst.h environ.h $(gdbcmd_h) gdbcore.h \
561
        gdb-stabs.h hpread.h $(inferior_h) language.h minimon.h monitor.h \
562
        objfiles.h parser-defs.h partial-stab.h serial.h signals.h solib.h \
563
        symfile.h stabsread.h target.h terminal.h typeprint.h xcoffsolib.h \
564
        c-lang.h ch-lang.h f-lang.h \
565
        jv-lang.h \
566
        m2-lang.h \
567
        complaints.h valprint.h \
568
        29k-share/udi/udiids.h 29k-share/udi_soc nindy-share/b.out.h \
569
        nindy-share/block_io.h nindy-share/coff.h \
570
        nindy-share/env.h nindy-share/stop.h \
571
        vx-share/dbgRpcLib.h vx-share/ptrace.h vx-share/vxTypes.h \
572
        vx-share/vxWorks.h vx-share/wait.h vx-share/xdr_ld.h \
573
        vx-share/xdr_ptrace.h vx-share/xdr_rdb.h gdbthread.h \
574
        dcache.h remote-utils.h top.h somsolib.h
575
 
576
# Header files that already have srcdir in them, or which are in objdir.
577
 
578
HFILES_WITH_SRCDIR = $(udiheaders) ../bfd/bfd.h
579
 
580
 
581
# GDB "info" files, which should be included in their entirety
582
INFOFILES = gdb.info*
583
 
584
REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
585
 
586
POSSLIBS = gnu-regex.c gnu-regex.h
587
 
588
# {X,T,NAT}DEPFILES are something of a pain in that it's hard to
589
# default their values the way we do for SER_HARDWIRE; in the future
590
# maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
591
# variables analogous to SER_HARDWIRE which get defaulted in this
592
# Makefile.in
593
 
594
DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \
595
           $(REMOTE_OBS) $(SIM_OBS) $(CONFIG_OBS)
596
 
597
SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) $(CONFIG_SRCS)
598
# Don't include YYFILES (*.tab.c) because we already include *.y in SFILES,
599
# and it's more useful to see it in the .y file.
600
TAGFILES_NO_SRCDIR = $(SFILES) $(HFILES_NO_SRCDIR) $(ALLDEPFILES) \
601
        $(POSSLIBS)
602
TAGFILES_WITH_SRCDIR = $(HFILES_WITH_SRCDIR)
603
 
604
COMMON_OBS = version.o blockframe.o breakpoint.o findvar.o stack.o thread.o \
605
        source.o values.o eval.o valops.o valarith.o valprint.o printcmd.o \
606
        symtab.o symfile.o symmisc.o infcmd.o infrun.o command.o \
607
        expprint.o environ.o \
608
        event-loop.o event-top.o inf-loop.o \
609
        gdbarch.o arch-utils.o gdbtypes.o copying.o $(DEPFILES) \
610
        mem-break.o target.o parse.o language.o $(YYOBJ) buildsym.o \
611
        kod.o kod-cisco.o \
612
        gdb-events.o \
613
        exec.o bcache.o objfiles.o minsyms.o maint.o demangle.o \
614
        dbxread.o coffread.o elfread.o \
615
        dwarfread.o dwarf2read.o mipsread.o stabsread.o corefile.o \
616
        c-lang.o ch-exp.o ch-lang.o f-lang.o \
617
        ui-out.o cli-out.o \
618
        varobj.o wrapper.o \
619
        jv-lang.o jv-valprint.o jv-typeprint.o \
620
        m2-lang.o \
621
        scm-exp.o scm-lang.o scm-valprint.o complaints.o typeprint.o \
622
        c-typeprint.o ch-typeprint.o f-typeprint.o m2-typeprint.o \
623
        c-valprint.o cp-valprint.o ch-valprint.o f-valprint.o m2-valprint.o \
624
        nlmread.o serial.o mdebugread.o os9kread.o top.o utils.o \
625
        ui-file.o tui-file.o
626
 
627
OBS = $(COMMON_OBS) $(ANNOTATE_OBS)
628
 
629
TSOBS = inflow.o
630
 
631
NTSOBS = standalone.o
632
 
633
NTSSTART = kdb-start.o
634
 
635
SUBDIRS = @SUBDIRS@
636
 
637
# For now, shortcut the "configure GDB for fewer languages" stuff.
638
YYFILES = c-exp.tab.c \
639
        jv-exp.tab.c \
640
        f-exp.tab.c m2-exp.tab.c
641
YYOBJ = c-exp.tab.o \
642
        jv-exp.tab.o \
643
        f-exp.tab.o m2-exp.tab.o
644
 
645
# Things which need to be built when making a distribution.
646
 
647
DISTSTUFF = $(YYFILES)
648
 
649
# Prevent Sun make from putting in the machine type.  Setting
650
# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
651
.c.o:
652
        $(CC) -c $(INTERNAL_CFLAGS) $<
653
 
654
all: gdb$(EXEEXT) $(CONFIG_ALL)
655
        @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
656
 
657
installcheck:
658
 
659
# The check target can not use subdir_do, because subdir_do does not
660
# use TARGET_FLAGS_TO_PASS.
661
check: force
662
        @if [ -f testsuite/Makefile ]; then \
663
          rootme=`pwd`; export rootme; \
664
          rootsrc=`cd $(srcdir); pwd`; export rootsrc; \
665
          cd testsuite; \
666
          $(MAKE) $(TARGET_FLAGS_TO_PASS) check; \
667
        else true; fi
668
 
669
info dvi install-info clean-info html install-html: force
670
        @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
671
 
672
gdb.z:gdb.1
673
        nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
674
        pack gdb.t ; rm -f gdb.t
675
        mv gdb.t.z gdb.z
676
 
677
# Traditionally "install" depends on "all".  But it may be useful
678
# not to; for example, if the user has made some trivial change to a
679
# source file and doesn't care about rebuilding or just wants to save the
680
# time it takes for make to check that all is up to date.
681
# install-only is intended to address that need.
682
install: all install-only
683
install-only: $(CONFIG_INSTALL)
684
        transformed_name=`t='$(program_transform_name)'; \
685
                          echo gdb | sed -e $$t` ; \
686
                if test "x$$transformed_name" = x; then \
687
                  transformed_name=gdb ; \
688
                else \
689
                  true ; \
690
                fi ; \
691
                $(srcdir)/../mkinstalldirs $(bindir) ; \
692
                $(INSTALL_PROGRAM) gdb$(EXEEXT) $(bindir)/$$transformed_name$(EXEEXT) ; \
693
                $(srcdir)/../mkinstalldirs $(man1dir) ; \
694
                $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$transformed_name.1
695
        @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
696
 
697
uninstall: force $(CONFIG_UNINSTALL)
698
        transformed_name=`t='$(program_transform_name)'; \
699
                          echo gdb | sed -e $$t` ; \
700
                if test "x$$transformed_name" = x; then \
701
                  transformed_name=gdb ; \
702
                else \
703
                  true ; \
704
                fi ; \
705
                rm -f $(bindir)/$$transformed_name$(EXEEXT) $(man1dir)/$$transformed_name.1
706
        rm -rf $(datadir)/gdbtcl
707
        @$(MAKE) DO=uninstall "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
708
 
709
# We do this by grepping through sources.  If that turns out to be too slow,
710
# maybe we could just require every .o file to have an initialization routine
711
# of a given name (remote-udi.o -> _initialize_remote_udi, etc.).
712
#
713
# Formatting conventions:  The name of the _initialize_* routines must start
714
# in column zero, and must not be inside #if.
715
#
716
# Note that the set of files with init functions might change, or the names
717
# of the functions might change, so this files needs to depend on all the
718
# object files that will be linked into gdb.
719
#
720
# FIXME: There are 2 problems with this approach. First, if the INIT_FILES
721
# list includes a file twice (because of some mistake somewhere else)
722
# the _initialize_* function will be included twice in init.c. Second,
723
# init.c may force unnecessary files to be linked in. Like for instance
724
# tui-file.c.
725
#
726
 
727
INIT_FILES = $(OBS) $(TSOBS) $(CONFIG_INITS)
728
init.c: $(INIT_FILES)
729
        @echo Making init.c
730
        @rm -f init.c-tmp init.l-tmp
731
        @-echo $(INIT_FILES) | \
732
        tr ' ' '\012' | \
733
        sed -e '/^Onindy.o/d' \
734
            -e '/^init.o/d' \
735
            -e '/^nindy.o/d' \
736
            -e '/ttyflush.o/d' \
737
            -e '/xdr_ld.o/d' \
738
            -e '/xdr_ptrace.o/d' \
739
            -e '/xdr_rdb.o/d' \
740
            -e '/udr.o/d' \
741
            -e '/udip2soc.o/d' \
742
            -e '/udi2go32.o/d' \
743
            -e '/version.o/d' \
744
            -e '/^[a-z0-9A-Z_]*_[SU].o/d' \
745
            -e '/[a-z0-9A-Z_]*-exp.tab.o/d' \
746
            -e 's/\.o/.c/' \
747
            -e 's|\([^  ][^     ]*\)|$(srcdir)/\1|g' | \
748
        while read f; do grep '^_initialize_[a-z_0-9A-Z]* *(' $$f 2>/dev/null; done | \
749
        sed -e 's/^.*://' -e 's/^\([a-z_0-9A-Z]*\).*/\1/' > init.l-tmp
750
        @echo '/* Do not modify this file.  */' >>init.c-tmp
751
        @echo '/* It is created automatically by the Makefile.  */'>>init.c-tmp
752
        @echo '#include "defs.h"' >>init.c-tmp
753
        @echo '#include "call-cmds.h"' >>init.c-tmp
754
        @sed -e 's/\(.*\)/extern initialize_file_ftype \1;/' >init.c-tmp
755
        @echo 'void' >>init.c-tmp
756
        @echo 'initialize_all_files (void)' >>init.c-tmp
757
        @echo '{' >>init.c-tmp
758
        @sed -e 's/\(.*\)/  \1 ();/' >init.c-tmp
759
        @echo '}' >>init.c-tmp
760
        @rm init.l-tmp
761
        @mv init.c-tmp init.c
762
 
763
.PRECIOUS: init.c
764
 
765
init.o: init.c $(defs_h) $(call_cmds_h)
766
 
767
# Removing the old gdb first works better if it is running, at least on SunOS.
768
gdb$(EXEEXT): main.o libgdb.a $(ADD_DEPS) $(CDEPS) $(TDEPLIBS)
769
        rm -f gdb$(EXEEXT)
770
        $(HLDENV) $(CC_LD) $(INTERNAL_LDFLAGS) $(WIN32LDAPP) -o gdb$(EXEEXT) main.o libgdb.a $(TDEPLIBS) $(TUI_LIBRARY) $(CLIBS) $(LOADLIBES)
771
 
772
nlm:    force
773
        rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=all DODIRS=nlm subdir_do
774
 
775
# Create a library of the gdb object files and build GDB by linking
776
# against that.
777
#
778
# init.o is very important.  It pulls in the rest of GDB.
779
LIBGDB_OBS= $(OBS) $(TSOBS) $(ADD_FILES) init.o
780
libgdb.a: $(LIBGDB_OBS)
781
        -rm -f libgdb.a
782
        $(AR) q libgdb.a $(LIBGDB_OBS)
783
        $(RANLIB) libgdb.a
784
 
785
saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
786
        #setopt load_flags $(CFLAGS) $(BFD_CFLAGS) -DHOST_SYS=SUN4_SYS
787
        #load ./init.c $(SFILES)
788
        #unload $(srcdir)/c-exp.y
789
        #unload $(srcdir)/jv-exp.y
790
        #unload $(srcdir)/m2-exp.y
791
        #unload vx-share/*.h
792
        #unload nindy-share/[A-Z]*
793
        #load c-exp.tab.c
794
        #load jv-exp.tab.c
795
        #load m2-exp.tab.c
796
        #load copying.c version.c
797
        #load ../opcodes/libopcodes.a
798
        #load ../libiberty/libiberty.a
799
        #load ../bfd/libbfd.a
800
        #load ../readline/libreadline.a
801
        #load ../mmalloc/libmmalloc.a
802
        #load ../intl/libintl.a
803
        #load -ltermcap
804
        #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
805
        echo "Load .c corresponding to:" $(DEPFILES)
806
 
807
 
808
# A Mach 3.0 program to force gdb back to command level
809
 
810
stop-gdb: stop-gdb.o
811
        ${CC_LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o stop-gdb \
812
        stop-gdb.o $(CLIBS) $(LOADLIBES)
813
 
814
# This is useful when debugging GDB, because some Unix's don't let you run GDB
815
# on itself without copying the executable.  So "make gdb1" will make
816
# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
817
# Removing gdb1 before the copy is the right thing if gdb1 is open
818
# in another process.
819
gdb1$(EXEEXT): gdb$(EXEEXT)
820
        rm -f gdb1$(EXEEXT)
821
        cp gdb$(EXEEXT) gdb1$(EXEEXT)
822
 
823
# FIXME. These are not generated by "make depend" because they only are there
824
# for some machines.
825
# But these rules don't do what we want; we want to hack the foo.o: tm.h
826
# dependency to do the right thing.
827
tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
828
tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
829
xm-news1000.h: xm-news.h
830
xm-i386-sv32.h: xm-i386.h
831
tm-i386gas.h: tm-i386.h
832
xm-sun4os4.h: xm-sparc.h
833
tm-sun4os4.h: tm-sparc.h
834
xm-vaxult.h: xm-vax.h
835
xm-vaxbsd.h: xm-vax.h
836
 
837
kdb:    $(NTSSTART) $(OBS) $(NTSOBS) $(ADD_DEPS) $(CDEPS)
838
        ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
839
          -lc $(CLIBS)
840
 
841
# Have the TUI library depend on a phony target, so we'll always
842
# recurse and make sure it's up to date.  If it is, then the file will
843
# be unchanged, and we won't rebuild it.
844
# .PHONY: check-tui
845
all-tui:
846
        @(cd tui; ${MAKE} ${FLAGS_TO_PASS} all)
847
 
848
# Put the proper machine-specific files first, so M-. on a machine
849
# specific routine gets the one for the correct machine.  (FIXME: those
850
# files go in twice; we should be removing them from the main list).
851
 
852
# TAGS depends on all the files that go into it so you can rebuild TAGS
853
# with `make TAGS' and not have to say `rm TAGS' first.
854
 
855
TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR)
856
        @echo Making TAGS
857
        @etags $(srcdir)/$(TM_FILE) \
858
          $(srcdir)/$(XM_FILE) \
859
          $(srcdir)/$(NAT_FILE) \
860
        `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \
861
                echo $(srcdir)/$$i ; \
862
        done ; for i in $(TAGFILES_WITH_SRCDIR); do \
863
                echo $$i ; \
864
        done) | sed -e 's/\.o$$/\.c/'` \
865
        `find $(srcdir)/config -name '*.h' -print`
866
 
867
tags: TAGS
868
 
869
clean mostlyclean: $(CONFIG_CLEAN)
870
        @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
871
        rm -f *.o *.a $(ADD_FILES) *~ init.c-tmp init.l-tmp
872
        rm -f init.c version.c
873
        rm -f gdb$(EXEEXT) core make.log
874
        rm -f gdb[0-9]$(EXEEXT)
875
 
876
# This used to depend on c-exp.tab.c m2-exp.tab.c TAGS
877
# I believe this is wrong; the makefile standards for distclean just
878
# describe removing files; the only sort of "re-create a distribution"
879
# functionality described is if the distributed files are unmodified.
880
distclean: clean
881
        @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
882
        rm -f nm.h tm.h xm.h config.status config.h stamp-h .gdbinit
883
        rm -f y.output yacc.acts yacc.tmp y.tab.h
884
        rm -f config.log config.cache
885
        rm -f tui/Makefile
886
        rm -f Makefile
887
 
888
maintainer-clean: local-maintainer-clean do-maintainer-clean distclean
889
realclean: maintainer-clean
890
 
891
local-maintainer-clean:
892
        @echo "This command is intended for maintainers to use;"
893
        @echo "it deletes files that may require special tools to rebuild."
894
        rm -f c-exp.tab.c \
895
                jv-exp.tab \
896
                f-exp.tab.c m2-exp.tab.c
897
        rm -f TAGS $(INFOFILES)
898
        rm -f $(YYFILES)
899
        rm -f nm.h tm.h xm.h config.status
900
 
901
do-maintainer-clean:
902
        @$(MAKE) $(FLAGS_TO_PASS) DO=maintainer-clean "DODIRS=$(SUBDIRS)" \
903
                subdir_do
904
 
905
diststuff: $(DISTSTUFF)
906
        cd doc; $(MAKE) $(MFLAGS) diststuff
907
 
908
subdir_do: force
909
        @for i in $(DODIRS); do \
910
                if [ -f ./$$i/Makefile ] ; then \
911
                        if (cd ./$$i; \
912
                                $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
913
                        else exit 1 ; fi ; \
914
                else true ; fi ; \
915
        done
916
 
917
Makefile: Makefile.in config.status @frags@
918
        $(SHELL) config.status
919
 
920
config.h: stamp-h ; @true
921
stamp-h: config.in config.status
922
        CONFIG_HEADERS=config.h:config.in $(SHELL) config.status
923
 
924
config.status: configure
925
        $(SHELL) config.status --recheck
926
 
927
force:
928
 
929
# Documentation!
930
# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
931
doc/refcard.dvi:
932
        cd doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS)
933
 
934
# GDB QUICK REFERENCE (PostScript output, common PS fonts)
935
doc/refcard.ps:
936
        cd doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS)
937
 
938
# GDB MANUAL: TeX dvi file
939
doc/gdb.dvi:
940
        cd doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS)
941
 
942
# GDB MANUAL: info file
943
doc/gdb.info:
944
        cd doc; $(MAKE) gdb.info $(FLAGS_TO_PASS)
945
 
946
# Make copying.c from COPYING
947
$(srcdir)/copying.c: @MAINTAINER_MODE_TRUE@ \
948
                $(srcdir)/COPYING $(srcdir)/copying.awk
949
        awk -f $(srcdir)/copying.awk \
950
                < $(srcdir)/COPYING > $(srcdir)/copying.tmp
951
        mv $(srcdir)/copying.tmp $(srcdir)/copying.c
952
 
953
version.c: Makefile
954
        rm -f version.c
955
        echo '#include "version.h"' >> version.c
956
        echo 'const char version[] = "$(VERSION)";' >> version.c
957
        echo 'const char host_name[] = "$(host_alias)";' >> version.c
958
        echo 'const char target_name[] = "$(target_alias)";' >> version.c
959
version.o: version.c $(version_h)
960
 
961
# c-exp.tab.c is generated in objdir from c-exp.y if it doesn't exist
962
# in srcdir, then compiled in objdir to c-exp.tab.o.
963
 
964
# If we said c-exp.tab.c rather than ./c-exp.tab.c some makes
965
# would sometimes re-write it into $(srcdir)/c-exp.tab.c.
966
 
967
# Remove bogus decls for malloc/realloc/free which conflict with everything
968
# else.  Strictly speaking c-exp.tab.c should therefore depend on
969
# Makefile.in, but that was a pretty big annoyance.
970
c-exp.tab.o: c-exp.tab.c
971
c-exp.tab.c: c-exp.y
972
        $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/c-exp.y  y.tab.c c-exp.tmp -- $(YFLAGS)
973
        -sed -e '/extern.*malloc/d' \
974
             -e '/extern.*realloc/d' \
975
             -e '/extern.*free/d' \
976
             -e '/include.*malloc.h/d' \
977
             -e 's/malloc/xmalloc/g' \
978
             -e 's/realloc/xrealloc/g' \
979
             -e '/^#line.*y.tab.c/d' \
980
          < c-exp.tmp > c-exp.new
981
        -rm c-exp.tmp
982
        mv c-exp.new ./c-exp.tab.c
983
 
984
jv-exp.tab.o: jv-exp.tab.c
985
jv-exp.tab.c: jv-exp.y
986
        $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/jv-exp.y  y.tab.c jv-exp.tmp -- $(YFLAGS)
987
        -sed -e '/extern.*malloc/d' \
988
             -e '/extern.*realloc/d' \
989
             -e '/extern.*free/d' \
990
             -e '/include.*malloc.h/d' \
991
             -e 's/malloc/xmalloc/g' \
992
             -e 's/realloc/xrealloc/g' \
993
             -e '/^#line.*y.tab.c/d' \
994
          < jv-exp.tmp > jv-exp.new
995
        -rm jv-exp.tmp
996
        mv jv-exp.new ./jv-exp.tab.c
997
 
998
f-exp.tab.o: f-exp.tab.c
999
f-exp.tab.c: f-exp.y c-exp.tab.c
1000
        $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/f-exp.y  y.tab.c f-exp.tmp -- $(YFLAGS)
1001
        -sed -e '/extern.*malloc/d' \
1002
             -e '/extern.*realloc/d' \
1003
             -e '/extern.*free/d' \
1004
             -e '/include.*malloc.h/d' \
1005
             -e 's/malloc/xmalloc/g' \
1006
             -e 's/realloc/xrealloc/g' \
1007
             -e '/^#line.*y.tab.c/d' \
1008
          < f-exp.tmp > f-exp.new
1009
        -rm f-exp.tmp
1010
        mv f-exp.new ./f-exp.tab.c
1011
 
1012
# m2-exp.tab.c is generated in objdir from m2-exp.y if it doesn't exist
1013
# in srcdir, then compiled in objdir to m2-exp.tab.o.
1014
# Remove bogus decls for malloc/realloc/free which conflict with everything
1015
# else.
1016
m2-exp.tab.o: m2-exp.tab.c
1017
m2-exp.tab.c: m2-exp.y
1018
        $(SHELL) $(YLWRAP) "$(YACC)" $(srcdir)/m2-exp.y  y.tab.c m2-exp.tmp -- $(YFLAGS)
1019
        -sed -e '/extern.*malloc/d' \
1020
             -e '/extern.*realloc/d' \
1021
             -e '/extern.*free/d' \
1022
             -e '/include.*malloc.h/d' \
1023
             -e 's/malloc/xmalloc/g' \
1024
             -e 's/realloc/xrealloc/g' \
1025
             -e '/^#line.*y.tab.c/d' \
1026
          < m2-exp.tmp > m2-exp.new
1027
        -rm m2-exp.tmp
1028
        mv m2-exp.new ./m2-exp.tab.c
1029
 
1030
# These files are updated atomically, so make never has to remove them
1031
.PRECIOUS: m2-exp.tab.c f-exp.tab.c c-exp.tab.c
1032
.PRECIOUS: jv-exp.tab.c
1033
 
1034
lint: $(LINTFILES)
1035
        $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
1036
           `echo $(DEPFILES) | sed 's/\.o /\.c /g'`
1037
 
1038
gdb.cxref: $(SFILES)
1039
        cxref -I. $(SFILES) >gdb.cxref
1040
 
1041
force_update:
1042
 
1043
# GNU Make has an annoying habit of putting *all* the Makefile variables
1044
# into the environment, unless you include this target as a circumvention.
1045
# Rumor is that this will be fixed (and this target can be removed)
1046
# in GNU Make 4.0.
1047
.NOEXPORT:
1048
 
1049
# GNU Make 3.63 has a different problem: it keeps tacking command line
1050
# overrides onto the definition of $(MAKE).  This variable setting
1051
# will remove them.
1052
MAKEOVERRIDES=
1053
 
1054
## This is ugly, but I don't want GNU make to put these variables in
1055
## the environment.  Older makes will see this as a set of targets
1056
## with no dependencies and no actions.
1057
unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
1058
 
1059
ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \
1060
        29k-share/udi/udi2go32.c \
1061
        a29k-tdep.c a68v-nat.c alpha-nat.c alpha-tdep.c \
1062
        altos-xdep.c arm-convert.s \
1063
        arm-linux-nat.c arm-linux-tdep.c arm-tdep.c arm-xdep.c \
1064
        coff-solib.c convex-tdep.c convex-xdep.c \
1065
        core-sol2.c core-regset.c core-aout.c corelow.c \
1066
        dcache.c delta68-nat.c dpx2-nat.c dstread.c exec.c fork-child.c \
1067
        go32-nat.c h8300-tdep.c h8500-tdep.c \
1068
        hp300ux-nat.c hppa-tdep.c hppab-nat.c hppah-nat.c \
1069
        hp-psymtab-read.c hp-symtab-read.c \
1070
        i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c i386-linux-nat.c \
1071
        i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \
1072
        i387-tdep.c \
1073
        i386-linux-tdep.c \
1074
        i960-tdep.c \
1075
        ia64-linux-nat.c ia64-tdep.c \
1076
        infptrace.c inftarg.c irix4-nat.c irix5-nat.c isi-xdep.c \
1077
        lynx-nat.c m3-nat.c \
1078
        m68k-tdep.c \
1079
        m88k-nat.c m88k-tdep.c mac-nat.c \
1080
        mcore-tdep.c \
1081
        mips-nat.c \
1082
        mips-tdep.c mipsm3-nat.c mipsv4-nat.c news-xdep.c \
1083
        nindy-share/Onindy.c nindy-share/nindy.c \
1084
        nindy-share/ttyflush.c nindy-tdep.c \
1085
        ns32k-tdep.c ns32km3-nat.c osfsolib.c \
1086
        somread.c somsolib.c $(HPREAD_SOURCE) \
1087
        ppc-linux-nat.c ppc-linux-tdep.c \
1088
        procfs.c pyr-tdep.c pyr-xdep.c \
1089
        remote-adapt.c remote-array.c remote-bug.c remote-e7000.c remote-eb.c \
1090
        remote-es.c remote-hms.c remote-mips.c \
1091
        remote-mm.c remote-nindy.c remote-os9k.c remote-rdp.c remote-sim.c \
1092
        remote-st.c remote-utils.c dcache.c \
1093
        remote-udi.c remote-vx.c remote-vx29k.c \
1094
        rs6000-nat.c rs6000-tdep.c \
1095
        ser-go32.c ser-pipe.c ser-ocd.c ser-tcp.c \
1096
        sh-tdep.c solib.c sparc-nat.c \
1097
        sparc-tdep.c sparcl-tdep.c sun3-nat.c sun386-nat.c \
1098
        symm-tdep.c symm-nat.c \
1099
        tahoe-tdep.c ultra3-nat.c ultra3-xdep.c umax-xdep.c \
1100
        vax-tdep.c \
1101
        vx-share/xdr_ld.c vx-share/xdr_ptrace.c vx-share/xdr_rdb.c \
1102
        win32-nat.c \
1103
        xcoffread.c xcoffsolib.c z8k-tdep.c
1104
 
1105
udip2soc.o: $(srcdir)/29k-share/udi/udip2soc.c $(udiheaders)
1106
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udip2soc.c
1107
 
1108
udi2go32.o: $(srcdir)/29k-share/udi/udi2go32.c $(udiheaders)
1109
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udi2go32.c
1110
 
1111
udr.o: $(srcdir)/29k-share/udi/udr.c $(udiheaders)
1112
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/29k-share/udi/udr.c
1113
 
1114
a29k-tdep.o: a29k-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h)
1115
 
1116
a68v-nat.o: a68v-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1117
 
1118
alpha-nat.o: alpha-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1119
 
1120
alpha-tdep.o: alpha-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1121
        $(inferior_h) $(symtab_h) $(dis-asm.h) gdb_string.h
1122
 
1123
# OBSOLETE altos-xdep.o: altos-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1124
 
1125
annotate.o: annotate.c $(defs_h) annotate.h $(value_h) target.h $(gdbtypes_h)
1126
 
1127
arm-linux-nat.o: arm-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1128
        gdb_string.h
1129
 
1130
arm-linux-tdep.o: arm-linux-tdep.c $(defs_h) target.h $(value_h) \
1131
                  $(gdbtypes_h) $(floatformat_h)
1132
 
1133
arm-tdep.o: arm-tdep.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1134
        $(gdbcore_h)
1135
 
1136
bcache.o: bcache.c bcache.h $(defs_h)
1137
 
1138
blockframe.o: blockframe.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1139
        objfiles.h symfile.h target.h
1140
 
1141
breakpoint.o: breakpoint.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1142
        $(inferior_h) language.h target.h gdbthread.h gdb_string.h \
1143
        gdb-events.h
1144
 
1145
buildsym.o: buildsym.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1146
        objfiles.h symfile.h $(symtab_h) gdb_string.h
1147
 
1148
c-lang.o: c-lang.c c-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1149
        language.h parser-defs.h $(symtab_h)
1150
 
1151
c-typeprint.o: c-typeprint.c c-lang.h $(defs_h) $(expression_h) \
1152
        $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1153
        target.h typeprint.h $(value_h) gdb_string.h
1154
 
1155
c-valprint.o: c-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1156
        language.h $(symtab_h) valprint.h $(value_h)
1157
 
1158
f-lang.o: f-lang.c f-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1159
        language.h parser-defs.h $(symtab_h) gdb_string.h
1160
 
1161
f-typeprint.o: f-typeprint.c f-lang.h $(defs_h) $(expression_h) \
1162
        $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1163
        target.h typeprint.h $(value_h) gdb_string.h
1164
 
1165
f-valprint.o: f-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1166
        language.h $(symtab_h) valprint.h $(value_h) gdb_string.h
1167
 
1168
ch-exp.o: ch-exp.c ch-lang.h $(defs_h) language.h parser-defs.h $(bfd_h) symfile.h objfiles.h $(value_h)
1169
 
1170
ch-lang.o: ch-lang.c ch-lang.h $(defs_h) $(expression_h) $(gdbtypes_h) \
1171
        language.h parser-defs.h $(symtab_h)
1172
 
1173
ch-typeprint.o: ch-typeprint.c ch-lang.h $(defs_h) $(expression_h) \
1174
        $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) \
1175
        target.h $(value_h) typeprint.h gdb_string.h
1176
 
1177
ch-valprint.o: ch-valprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1178
        language.h $(symtab_h) valprint.h $(value_h) c-lang.h
1179
 
1180
coff-solib.o: coff-solib.c $(defs_h)
1181
 
1182
coffread.o: coffread.c $(bfd_h) $(breakpoint_h) buildsym.h \
1183
        complaints.h $(defs_h) $(expression_h) $(gdbtypes_h) objfiles.h \
1184
        symfile.h $(symtab_h) gdb-stabs.h stabsread.h target.h \
1185
        gdb_string.h
1186
 
1187
command.o: command.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1188
        $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h gdb_wait.h
1189
 
1190
complaints.o: complaints.c complaints.h $(defs_h) $(gdbcmd_h)
1191
 
1192
# OBSOLETE convex-tdep.o: convex-tdep.c gdb_wait.h $(defs_h) $(gdbcmd_h) \
1193
# OBSOLETE      $(gdbcore_h) $(inferior_h)
1194
 
1195
# OBSOLETE convex-xdep.o: convex-xdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1196
# OBSOLETE      $(inferior_h)
1197
 
1198
# Provide explicit rule/dependency - works for more makes.
1199
copying.o: $(srcdir)/copying.c $(defs_h) $(gdbcmd_h)
1200
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/copying.c
1201
 
1202
core-aout.o: core-aout.c $(defs_h) $(gdbcore_h) $(value_h) $(inferior_h)
1203
 
1204
core-sol2.o: core-sol2.c $(command_h) $(defs_h) $(gdbcore_h) \
1205
        $(inferior_h) target.h gdb_string.h
1206
 
1207
core-regset.o: core-regset.c $(command_h) $(defs_h) $(gdbcore_h) \
1208
        $(inferior_h) target.h gdb_string.h
1209
 
1210
corefile.o: corefile.c $(dis-asm_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1211
        $(inferior_h) target.h language.h gdb_string.h
1212
 
1213
corelow.o: corelow.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1214
        target.h gdbthread.h gdb_string.h
1215
 
1216
cp-valprint.o: cp-valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1217
        $(gdbtypes_h) $(symtab_h) $(value_h) gdb_string.h
1218
 
1219
dcache.o: dcache.c $(dcache_h) $(defs_h) $(gdbcmd_h) gdb_string.h $(gdbcore_h)
1220
 
1221
dbxread.o: dbxread.c $(breakpoint_h) buildsym.h $(command_h) \
1222
        complaints.h $(defs_h) $(expression_h) gdb-stabs.h $(gdbcore_h) \
1223
        $(gdbtypes_h) language.h objfiles.h partial-stab.h stabsread.h \
1224
        symfile.h $(symtab_h) target.h gdb_string.h
1225
 
1226
delta68-nat.o: delta68-nat.c $(defs_h)
1227
 
1228
demangle.o: demangle.c $(defs_h) $(gdbcmd_h) gdb_string.h
1229
 
1230
dink32-rom.o: dink32-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1231
        $(inferior_h) target.h serial.h terminal.h symfile.h
1232
 
1233
dpx2-nat.o: dpx2-nat.c $(defs_h) $(gdbcore_h) gdb_string.h
1234
 
1235
dstread.o: dstread.c gdb_string.h
1236
 
1237
dwarfread.o: dwarfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1238
        $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1239
        $(symtab_h) gdb_string.h
1240
 
1241
dwarf2read.o: dwarf2read.c $(bfd_h) buildsym.h $(defs_h) \
1242
        $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1243
        $(symtab_h) gdb_string.h
1244
 
1245
elfread.o: elfread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1246
        gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h \
1247
        $(BFD_SRC)/elf-bfd.h $(INCLUDE_DIR)/elf/mips.h
1248
 
1249
environ.o: environ.c $(defs_h) environ.h $(gdbcore_h) gdb_string.h
1250
 
1251
eval.o: eval.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1252
        $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1253
        gdb_string.h
1254
 
1255
event-loop.o: event-loop.c $(defs_h) $(top_h) $(event_loop_h) $(event_top_h)
1256
 
1257
event-top.o: event-top.c top.h $(readline_headers) \
1258
      $(defs_h) $(inferior_h) $(event_loop_h) $(event_top_h) terminal.h \
1259
        $(gdbcmd_h) target.h
1260
 
1261
inf-loop.o: inf-loop.c $(defs_h) $(inferior_h) $(inf_loop_h) $(event_loop_h) \
1262
         $(event_top_h)
1263
 
1264
exec.o: exec.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1265
        target.h language.h gdb_string.h
1266
 
1267
expprint.o: expprint.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1268
        language.h parser-defs.h $(symtab_h) $(value_h)
1269
 
1270
findvar.o: findvar.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1271
        gdb_string.h
1272
 
1273
fork-child.o: fork-child.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1274
        $(inferior_h) target.h terminal.h gdbthread.h gdb_string.h
1275
 
1276
# FIXME: cagney/2000-03-27: Post 5.0 this link code can be removed.
1277
# It should now be possible to run GDBtk from the build directory
1278
# without the link in place.
1279
all-gdbtk:
1280
        @if test ! -d gdbtcl/images ; then \
1281
          if test "$(LN_S)" = "ln -s" ; then \
1282
            echo linking ${srcdir}/gdbtk/library to gdbtcl ; \
1283
            rm -f gdbtcl ; \
1284
            test ! -r gdbtcl || exit 1 ; \
1285
            $(LN_S) ${srcdir}/gdbtk/library gdbtcl ; \
1286
          else \
1287
            echo "Warning:" ; \
1288
            echo "Unable to link ${srcdir}/gdbtk/library to gdbtcl." ; \
1289
            echo "You will need to do a \`make install' before you are" ; \
1290
            echo "able to run the GUI." ; \
1291
          fi ; \
1292
        else true ; fi
1293
 
1294
clean-gdbtk:
1295
        rm -f gdbtcl
1296
 
1297
install-gdbtk:
1298
        $(SHELL) $(srcdir)/../mkinstalldirs $(datadir)/gdbtcl ; \
1299
        $(SHELL) $(srcdir)/../mkinstalldirs \
1300
                $(datadir)/gdbtcl/images \
1301
                $(datadir)/gdbtcl/images2 ; \
1302
        $(SHELL) $(srcdir)/../mkinstalldirs $(datadir)/gdbtcl/help \
1303
                $(datadir)/gdbtcl/help/images \
1304
                $(datadir)/gdbtcl/help/trace ; \
1305
        cd $(srcdir)/gdbtk/library ; \
1306
        for i in *.tcl *.ith *.itb images/*.gif images2/*.gif images/icons.txt images2/icons.txt tclIndex help/*.html  help/trace/*.html help/trace/index.toc help/images/*.gif; \
1307
          do \
1308
                $(INSTALL_DATA) $$i $(datadir)/gdbtcl/$$i ; \
1309
          done ;
1310
 
1311
gdbres.o: $(srcdir)/gdbtk/gdb.rc $(srcdir)/gdbtk/gdbtool.ico
1312
        $(WINDRES) --include $(srcdir)/gdbtk $(srcdir)/gdbtk/gdb.rc gdbres.o
1313
 
1314
gdbtk.o: $(srcdir)/gdbtk/generic/gdbtk.c \
1315
        $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \
1316
        $(symtab_h) $(inferior_h) $(command_h) \
1317
        $(bfd_h) symfile.h objfiles.h target.h gdb_string.h $(tracepoint_h) \
1318
        $(top_h)
1319
        $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) \
1320
        $(ITK_CFLAGS) $(TIX_CFLAGS) \
1321
        $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1322
                $(srcdir)/gdbtk/generic/gdbtk.c -DGDBTK_LIBRARY=\"$(datadir)/gdbtcl\"
1323
 
1324
gdbtk-cmds.o: $(srcdir)/gdbtk/generic/gdbtk-cmds.c \
1325
        $(srcdir)/gdbtk/generic/gdbtk.h \
1326
        $(defs_h) $(symtab_h) $(inferior_h)     \
1327
        $(command_h) $(bfd_h) $(top_h) symfile.h objfiles.h target.h    \
1328
        gdb_string.h $(tracepoint_h) $(frame_h) source.h
1329
        $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS)        \
1330
        $(TIX_CFLAGS) $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS)          \
1331
        $(GDBTK_CFLAGS) $(srcdir)/gdbtk/generic/gdbtk-cmds.c                            \
1332
        -DGDBTK_LIBRARY=\"$(datadir)/gdbtcl\"
1333
 
1334
gdbtk-hooks.o: $(srcdir)/gdbtk/generic/gdbtk-hooks.c \
1335
        $(srcdir)/gdbtk/generic/gdbtk.h $(defs_h) \
1336
        $(symtab_h) $(inferior_h) $(command_h) \
1337
        $(bfd_h) symfile.h objfiles.h target.h gdb_string.h $(tracepoint_h)
1338
        $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1339
        $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1340
                $(srcdir)/gdbtk/generic/gdbtk-hooks.c -DGDBTK_LIBRARY=\"$(datadir)/gdbtcl\"
1341
 
1342
gdbtk-varobj.o: $(srcdir)/gdbtk/generic/gdbtk-varobj.c \
1343
        $(srcdir)/gdbtk/generic/gdbtk.h \
1344
        $(defs_h) $(value_h) varobj.h
1345
        $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1346
        $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1347
                $(srcdir)/gdbtk/generic/gdbtk-varobj.c
1348
 
1349
gdbtk-wrapper.o: $(srcdir)/gdbtk/generic/gdbtk-wrapper.c \
1350
        $(srcdir)/gdbtk/generic/gdbtk-wrapper.h
1351
        $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(GDBTK_CFLAGS)\
1352
                $(srcdir)/gdbtk/generic/gdbtk-wrapper.c
1353
 
1354
v850ice.o: v850ice.c $(defs_h) $(symtab_h) $(inferior_h) $(command_h) \
1355
        $(frame_h) $(breakpoint_h) $(gdbcore_h) $(value_h) symfile.h \
1356
        gdb_string.h target.h objfiles.h
1357
        $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \
1358
        $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) $(GDBTK_CFLAGS)\
1359
                $(srcdir)/v850ice.c
1360
 
1361
tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(tracepoint_h) \
1362
        $(gdbtypes_h) $(expression_h) $(gdbcmd_h) $(value_h) target.h \
1363
        language.h gdb_string.h $(readline_headers) $(remote_h)
1364
 
1365
gdbarch.o: gdbarch.c $(defs_h) $(bfd_h) $(gdbcmd_h)
1366
 
1367
arch-utils.o: arch-utils.c $(defs_h) $(bfd_h) $(gdbcmd_h) \
1368
        $(arch_utils_h)
1369
 
1370
gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \
1371
        $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \
1372
        $(value_h) gdb_string.h wrapper.h
1373
 
1374
go32-nat.o: go32-nat.c $(defs_h) $(inferior_h) gdb_wait.h $(gdbcore_h) \
1375
        $(command_h) $(floatformat_h) target.h
1376
 
1377
gnu-nat.o: process_reply_S.h exc_request_S.h notify_S.h msg_reply_S.h \
1378
        exc_request_U.h msg_U.h gnu-nat.h
1379
 
1380
h8300-tdep.o: h8300-tdep.c $(defs_h) $(frame_h) $(symtab_h)
1381
 
1382
h8500-tdep.o: h8500-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) \
1383
        $(expression_h) $(frame_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) \
1384
        $(value_h)
1385
 
1386
hp300ux-nat.o: hp300ux-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1387
 
1388
hppa-tdep.o: hppa-tdep.c gdb_wait.h $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1389
        $(inferior_h) objfiles.h symfile.h target.h
1390
 
1391
hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1392
 
1393
hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h
1394
 
1395
i386gnu-nat.o: gnu-nat.h
1396
 
1397
i386-tdep.o: i386-tdep.c $(defs_h) gdb_string.h $(frame_h)      \
1398
        $(inferior_h) $(gdbcore_h) target.h $(floatformat_h)    \
1399
        $(symtab_h) $(gdbcmd_h) $(command_h)
1400
 
1401
i386aix-nat.o: i386aix-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1402
        language.h $(gdbcore_h) $(floatformat_h) target.h
1403
 
1404
i386b-nat.o: i386b-nat.c $(defs_h)
1405
 
1406
i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1407
 
1408
i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) target.h $(gdbcore_h)
1409
 
1410
i386m3-nat.o: i386m3-nat.c $(defs_h) $(inferior_h) $(floatformat_h) target.h
1411
 
1412
i386mach-nat.o: i386mach-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1413
 
1414
i386v-nat.o: i386v-nat.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1415
        $(inferior_h) language.h target.h
1416
 
1417
i386-linux-nat.o: i386-linux-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) \
1418
        $(symtab_h) symfile.h objfiles.h
1419
 
1420
i386-linux-tdep.o: i386-linux-tdep.c $(defs_h) $(gdbcore_h) $(frame_h) \
1421
        $(value_h)
1422
 
1423
i386v4-nat.o: i386v4-nat.c $(defs_h)
1424
 
1425
i387-tdep.o: i387-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1426
        $(inferior_h) language.h
1427
 
1428
i960-tdep.o: i960-tdep.c $(floatformat_h) $(defs_h) $(expression_h) \
1429
        $(frame_h) $(gdbtypes_h) $(symtab_h) $(value_h) $(gdbcore_h)
1430
 
1431
ia64-linux-nat.o: ia64-linux-nat.c  $(defs_h) $(inferior_h) $(target_h) \
1432
        $(gdbcore_h)
1433
 
1434
ia64-tdep.o: ia64-tdep.c $(defs_h) $(inferior_h) symfile.h $(gdbcore_h) \
1435
        $(floatformat_h) objfiles.h $(INCLUDE_DIR)/elf/common.h
1436
 
1437
infcmd.o: infcmd.c $(defs_h) environ.h $(gdbcmd_h) $(gdbcore_h) \
1438
        $(inferior_h) target.h language.h gdb_string.h
1439
 
1440
inflow.o: inflow.c $(bfd_h) $(command_h) $(defs_h) $(inferior_h) \
1441
        signals.h target.h terminal.h gdbthread.h gdb_string.h
1442
 
1443
infptrace.o: infptrace.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1444
        gdb_string.h gdb_wait.h $(command_h)
1445
 
1446
infrun.o: infrun.c gdb_wait.h $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1447
        $(inferior_h) target.h gdbthread.h gdb_string.h $(event_loop_h) \
1448
        $(event_top_h) target.h
1449
 
1450
inftarg.o: inftarg.c gdb_wait.h $(defs_h) $(gdbcore_h) $(inferior_h) \
1451
        target.h terminal.h $(command_h)
1452
 
1453
irix4-nat.o: irix4-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1454
irix5-nat.o: irix5-nat.c $(defs_h) $(inferior_h) $(gdbcore_h) target.h \
1455
        $(symtab_h) symfile.h objfiles.h $(command_h) $(frame_h) gnu-regex.h \
1456
        language.h gdb_string.h
1457
 
1458
isi-xdep.o: isi-xdep.c
1459
 
1460
jv-lang.o: jv-lang.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1461
        $(expression_h) parser-defs.h language.h symfile.h objfiles.h \
1462
        gdb_string.h $(value_h) c-lang.h jv-lang.h $(gdbcore_h)
1463
 
1464
jv-typeprint.o: jv-typeprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1465
        $(value_h) $(INCLUDE_DIR)/demangle.h jv-lang.h gdb_string.h \
1466
        typeprint.h c-lang.h
1467
 
1468
jv-valprint.o: jv-valprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \
1469
        $(expression_h) $(value_h) $(INCLUDE_DIR)/demangle.h valprint.h \
1470
        language.h jv-lang.h c-lang.h gdbcore.h annotate.h
1471
 
1472
kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) target.h gdb_string.h kod.h
1473
 
1474
kod-cisco.o: kod-cisco.c $(defs_h) gdb_string.h kod.h
1475
 
1476
language.o: language.c $(bfd_h) $(defs_h) $(expression_h) $(frame_h) \
1477
        $(gdbcmd_h) $(gdbtypes_h) language.h parser-defs.h $(symtab_h) \
1478
        target.h $(value_h) gdb_string.h
1479
 
1480
lynx-nat.o: lynx-nat.c $(defs_h) $(frame_h) $(inferior_h) $(gdbcore_h) \
1481
        target.h
1482
 
1483
m2-lang.o: m2-lang.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1484
        language.h m2-lang.h parser-defs.h $(symtab_h)
1485
 
1486
m2-typeprint.o: m2-typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1487
        $(gdbcore_h) $(gdbtypes_h) language.h m2-lang.h $(symtab_h) target.h \
1488
        $(value_h) gdb_string.h
1489
 
1490
m2-valprint.o: m2-valprint.c $(defs_h) $(gdbtypes_h) $(symtab_h) \
1491
        valprint.h m2-lang.h
1492
 
1493
m3-nat.o: m3-nat.c $(defs_h) $(inferior_h) $(value_h) language.h target.h \
1494
        gdb_wait.h $(gdbcmd_h) $(gdbcore_h)
1495
 
1496
m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \
1497
        $(gdbcore_h) gdb_string.h
1498
 
1499
m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h
1500
 
1501
m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \
1502
        $(language_h) $(gdbcore_h) $(floatformat_h) target.h
1503
 
1504
m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1505
 
1506
m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1507
 
1508
mac-nat.o: mac-nat.c $(defs_h) gdb_string.h
1509
 
1510
main.o: main.c top.h $(defs_h) gdb_string.h $(event_loop_h) $(srcdir)/tui/tui-file.h
1511
 
1512
maint.o: maint.c $(defs_h) $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) language.h \
1513
        $(expression_h) objfiles.h symfile.h
1514
 
1515
mcore-tdep.o: mcore-tdep.c $(defs_h) $(frame_h) $(gdbcmd_h) $(value_h) $(symtab_h)
1516
 
1517
mcore-rom.o: mcore-rom.c $(defs_h) $(gdbcore_h) target.h monitor.h \
1518
        gdb_string.h
1519
 
1520
mdebugread.o: mdebugread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1521
        $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1522
        objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1523
        gdb_string.h
1524
 
1525
mipsm3-nat.o: mipsm3-nat.c $(defs_h) $(inferior_h)
1526
 
1527
os9kread.o: os9kread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1528
        $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1529
        objfiles.h stabsread.h symfile.h $(symtab_h) \
1530
        target.h gdb_string.h
1531
 
1532
mem-break.o: mem-break.c $(defs_h)
1533
 
1534
minsyms.o: minsyms.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1535
        $(symtab_h) gdb_string.h
1536
 
1537
mips-nat.o: mips-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1538
 
1539
mips-tdep.o: mips-tdep.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1540
        $(arch_utils_h) \
1541
        $(inferior_h) language.h objfiles.h symfile.h gdb_string.h
1542
 
1543
mipsread.o: mipsread.c buildsym.h complaints.h $(bfd_h) $(defs_h) \
1544
        $(expression_h) gdb-stabs.h $(gdbcore_h) $(gdbtypes_h) language.h \
1545
        objfiles.h partial-stab.h stabsread.h symfile.h $(symtab_h) \
1546
        gdb_string.h
1547
 
1548
mipsv4-nat.o: mipsv4-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h
1549
 
1550
monitor.o: monitor.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1551
        $(inferior_h) target.h serial.h terminal.h gdb_string.h
1552
 
1553
news-xdep.o: news-xdep.c
1554
 
1555
Onindy.o: nindy-share/Onindy.c gdb_wait.h nindy-share/block_io.h \
1556
        nindy-share/env.h
1557
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/Onindy.c
1558
 
1559
nindy.o: nindy-share/nindy.c gdb_wait.h nindy-share/block_io.h \
1560
        nindy-share/env.h
1561
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/nindy.c
1562
 
1563
nlmread.o: nlmread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1564
        gdb-stabs.h objfiles.h symfile.h $(symtab_h) stabsread.h \
1565
        gdb_string.h
1566
 
1567
ns32km3-nat.o: ns32km3-nat.c $(defs_h) $(inferior_h)
1568
 
1569
ttyflush.o: nindy-share/ttyflush.c
1570
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/nindy-share/ttyflush.c
1571
 
1572
nindy-tdep.o: nindy-tdep.c $(defs_h) $(frame_h) $(symtab_h)  $(gdbcore_h)
1573
 
1574
ns32k-tdep.o: ns32k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h)
1575
 
1576
objfiles.o: objfiles.c $(bfd_h) $(defs_h) objfiles.h symfile.h \
1577
        $(symtab_h) gdb_string.h $(breakpoint_h)
1578
 
1579
osfsolib.o: osfsolib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1580
        objfiles.h gnu-regex.h symfile.h target.h language.h gdb_string.h
1581
 
1582
somread.o: somread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1583
        gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1584
 
1585
somsolib.o: somsolib.c $(defs_h)
1586
 
1587
pa64solib.o: pa64solib.c $(defs_h)
1588
 
1589
hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1590
hpux-thread.o: hpux-thread.c $(defs_h) gdbthread.h target.h inferior.h
1591
        $(CC) -c $(INTERNAL_CFLAGS) -I$(srcdir)/osf-share \
1592
          -I$(srcdir)/osf-share/HP800 -I/usr/include/dce $(srcdir)/hpux-thread.c
1593
 
1594
# FIXME!!!
1595
hpread.o: hpread.c $(bfd_h) buildsym.h complaints.h $(defs_h) \
1596
        gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1597
 
1598
hp-psymtab-read.o: hp-psymtab-read.c hpread.h $(bfd_h) buildsym.h complaints.h \
1599
        $(defs_h) gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1600
 
1601
hp-symtab-read.o: hp-symtab-read.c hpread.h $(bfd_h) buildsym.h complaints.h \
1602
        $(defs_h) gdb-stabs.h objfiles.h symfile.h $(symtab_h) gdb_string.h
1603
# END FIXME!!!
1604
 
1605
parse.o: parse.c $(command_h) $(defs_h) $(expression_h) $(frame_h) \
1606
        $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1607
        gdb_string.h
1608
 
1609
ppc-bdm.o: ppc-bdm.c $(defs_h) $(gdbcore_h) gdb_string.h $(frame_h) \
1610
        $(inferior_h) $(bfd_h) symfile.h target.h gdb_wait.h $(gdbcmd_h) \
1611
        objfiles.h gdb-stabs.h serial.h ocd.h
1612
 
1613
ppc-linux-nat.o: ppc-linux-nat.c $(defs_h) $(gdbcore_h) $(frame_h) \
1614
        $(inferior_h) target.h
1615
 
1616
ppc-linux-tdep.o: ppc-linux-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1617
        target.h
1618
 
1619
ppcbug-rom.o: ppcbug-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1620
        $(inferior_h) target.h serial.h terminal.h
1621
 
1622
printcmd.o: printcmd.c $(breakpoint_h) $(defs_h) $(expression_h) \
1623
        $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1624
        symfile.h $(symtab_h) target.h gdb_string.h
1625
 
1626
# FIXME: Procfs.o gets -Wformat errors because things like pid_t don't
1627
# match output format strings.
1628
procfs.o: procfs.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1629
        target.h gdb_string.h gdbthread.h proc-utils.h
1630
        $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1631
 
1632
proc-api.o: proc-api.c $(defs_h) $(gdbcmd_h) proc-utils.h
1633
 
1634
proc-events.o: proc-events.c $(defs_h)
1635
 
1636
proc-flags.o: proc-flags.c $(defs_h)
1637
 
1638
proc-why.o: proc-why.c $(defs_h) proc-utils.h
1639
 
1640
sol-thread.o: sol-thread.c $(defs_h) gdbthread.h target.h $(inferior_h) \
1641
        $(gdbcmd_h)
1642
 
1643
linux-thread.o: linux-thread.c $(breakpoint_h) $(gdbcmd_h) gdb_wait.h \
1644
        gdbthread.h $(gdbcore_h) $(inferior_h) target.h $(defs_h)
1645
 
1646
# OBSOLETE pyr-tdep.o: pyr-tdep.c $(defs_h)
1647
 
1648
# OBSOLETE pyr-xdep.o: pyr-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1649
 
1650
gnu-regex.o: gnu-regex.c gnu-regex.h $(defs_h) gdb_string.h
1651
 
1652
remote-adapt.o: remote-adapt.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1653
        $(inferior_h) target.h terminal.h gdb_string.h
1654
 
1655
remote-array.o: remote-array.c gdb_wait.h $(defs_h) $(gdbcore_h) target.h \
1656
      gdb_string.h $(command_h) serial.h monitor.h $(remote_utils_h) \
1657
        $(version_h)
1658
 
1659
remote-rdi.o: remote-rdi.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1660
        $(inferior_h) gdb_string.h
1661
 
1662
rdi-share/libangsd.a:   force
1663
        @dir=rdi-share; \
1664
        if [ -f ./$${dir}/Makefile ] ; then \
1665
          r=`pwd`; export r; \
1666
          srcroot=`cd $(srcdir); pwd`; export srcroot; \
1667
          (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1668
        else \
1669
          true; \
1670
        fi
1671
 
1672
remote-d10v.o: remote-d10v.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1673
        $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1674
 
1675
remote-rdp.o: remote-rdp.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1676
        $(inferior_h) gdb_string.h
1677
 
1678
remote-bug.o: remote-bug.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1679
        $(inferior_h) target.h terminal.h $(remote_utils_h) gdb_string.h
1680
 
1681
# FIXME: For the SH target, remote-e7000 contains numerous -Wformat
1682
# warnings.  Since the fixes involve modifications to the code that
1683
# handles the SH remote protocol the changes need to be tested against
1684
# an SH board before they can be committed. cagney 1999-09-01.
1685
remote-e7000.o: remote-e7000.c $(defs_h) $(gdbcore_h) target.h \
1686
        gdb_wait.h serial.h gdb_string.h
1687
        $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1688
 
1689
remote-eb.o: remote-eb.c gdb_wait.h $(srcdir)/config/a29k/tm-a29k.h \
1690
        $(defs_h) $(gdbcore_h) $(inferior_h) symfile.h target.h terminal.h \
1691
        gdb_string.h
1692
 
1693
remote-es.o: remote-es.c $(bfd_h) gdb_wait.h $(command_h) $(defs_h) \
1694
        $(inferior_h) $(remote_utils_h) terminal.h gdb_string.h
1695
 
1696
remote-hms.o: remote-hms.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1697
        $(inferior_h) serial.h target.h terminal.h gdb_string.h
1698
 
1699
remote-mips.o: remote-mips.c gdb_wait.h $(defs_h) $(gdbcmd_h) \
1700
        $(gdbcore_h) $(inferior_h) serial.h symfile.h target.h
1701
 
1702
remote-mm.o: remote-mm.c $(bfd_h) gdb_wait.h $(defs_h) $(inferior_h) \
1703
        minimon.h target.h terminal.h gdb_string.h
1704
 
1705
remote-nindy.o: remote-nindy.c $(floatformat_h) gdb_wait.h $(command_h) \
1706
        $(defs_h) $(gdbcore_h) $(inferior_h) \
1707
        nindy-share/env.h nindy-share/stop.h $(remote_utils_h) \
1708
        symfile.h
1709
 
1710
remote-os9k.o: remote-os9k.c $(defs_h) $(gdbcore_h) gdb_wait.h \
1711
        $(command_h) monitor.h $(remote_utils_h) $(symtab_h) symfile.h \
1712
        objfiles.h gdb-stabs.h gdb_string.h
1713
 
1714
remote-sds.o: remote-sds.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1715
        $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h
1716
 
1717
remote-sim.o: remote-sim.c gdb_wait.h $(defs_h) $(gdbcore_h) \
1718
        $(inferior_h) target.h terminal.h gdb_string.h \
1719
        $(INCLUDE_DIR)/callback.h
1720
 
1721
remote-st.o: remote-st.c gdb_wait.h $(defs_h) $(gdbcore_h) serial.h \
1722
        target.h gdb_string.h
1723
 
1724
remote-udi.o: remote-udi.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1725
        $(inferior_h) target.h terminal.h $(udiheaders) gdb_string.h
1726
 
1727
remote-vx.o: remote-vx.c gdb_wait.h complaints.h $(defs_h) $(gdbcmd_h) \
1728
        $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1729
        vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1730
        vx-share/xdr_rdb.h gdb-stabs.h objfiles.h symfile.h $(bfd_h) \
1731
        gdb_string.h
1732
 
1733
remote-vx29k.o: remote-vx29k.c gdb_wait.h complaints.h $(defs_h) $(gdbcmd_h) \
1734
        $(gdbcore_h) $(inferior_h) target.h vx-share/dbgRpcLib.h \
1735
        vx-share/ptrace.h vx-share/xdr_ld.h vx-share/xdr_ptrace.h \
1736
        vx-share/xdr_rdb.h gdb_string.h
1737
 
1738
ocd.o: ocd.c ocd.h $(gdbcore_h) gdb_string.h $(frame_h) $(inferior_h) \
1739
        $(bfd_h) symfile.h target.h gdb_wait.h $(gdbcmd_h) objfiles.h \
1740
        gdb-stabs.h $(dcache_h) serial.h
1741
 
1742
remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \
1743
        $(inferior_h) $(remote_utils_h) gdb_string.h
1744
 
1745
remote.o: remote.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1746
        $(inferior_h) $(remote_utils_h) symfile.h terminal.h gdb_string.h \
1747
        $(event_loop_h) $(event_top_h) $(remote_h) $(inf_loop_h)
1748
 
1749
remote-nrom.o: remote-nrom.c $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1750
        $(inferior_h) $(remote_utils_h) symfile.h terminal.h
1751
 
1752
rom68k-rom.o: rom68k-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1753
        $(inferior_h) target.h serial.h terminal.h
1754
 
1755
rs6000-nat.o: rs6000-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h \
1756
        xcoffsolib.h
1757
 
1758
rs6000-tdep.o: rs6000-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) \
1759
        target.h xcoffsolib.h
1760
 
1761
scm-exp.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1762
        scm-lang.h scm-tags.h
1763
 
1764
scm-lang.o: $(defs_h) $(value_h) parser-defs.h language.h c-lang.h \
1765
        scm-lang.h scm-tags.h gdb_string.h $(gdbcore_h)
1766
 
1767
scm-valprint.o: $(defs_h) $(value_h) parser-defs.h language.h  \
1768
        scm-lang.h valprint.h $(gdbcore_h)
1769
 
1770
ser-go32.o: ser-go32.c $(defs_h) serial.h
1771
 
1772
ser-mac.o: ser-mac.c $(defs_h) serial.h signals.h
1773
 
1774
ser-ocd.o: ser-ocd.c $(defs_h) serial.h signals.h gdb_string.h
1775
 
1776
ser-pipe.o: ser-pipe.c $(defs_h) serial.h signals.h gdb_string.h ser-unix.h
1777
 
1778
ser-tcp.o: ser-tcp.c $(defs_h) serial.h signals.h gdb_string.h ser-unix.h
1779
 
1780
ser-unix.o: ser-unix.c $(defs_h) serial.h ser-unix.h
1781
 
1782
serial.o: serial.c $(defs_h) serial.h gdb_string.h
1783
 
1784
sh-tdep.o: sh-tdep.c $(bfd_h) $(dis-asm_h) \
1785
        $(srcdir)/../opcodes/sh-opc.h $(defs_h) $(expression_h) $(frame_h) \
1786
        $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(value_h)
1787
 
1788
sh3-rom.o: sh3-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1789
        $(inferior_h) target.h serial.h terminal.h
1790
 
1791
mon960-rom.o: mon960-rom.c monitor.h $(bfd_h) gdb_wait.h $(defs_h) $(gdbcmd_h) \
1792
        $(inferior_h) target.h serial.h terminal.h
1793
 
1794
solib.o: solib.c $(command_h) $(defs_h) $(gdbcore_h) $(inferior_h) \
1795
        objfiles.h gnu-regex.h symfile.h target.h gdb_string.h
1796
 
1797
source.o: source.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1798
        $(gdbcore_h) language.h objfiles.h gnu-regex.h symfile.h $(symtab_h) \
1799
        gdb_string.h source.h
1800
 
1801
sparc-nat.o: sparc-nat.c $(bfd_h) $(defs_h) $(inferior_h) $(gdbcore_h) \
1802
        target.h
1803
 
1804
sparc-tdep.o: sparc-tdep.c $(floatformat_h) $(defs_h) $(gdbcore_h) \
1805
        $(inferior_h) objfiles.h symfile.h target.h gdb_string.h
1806
 
1807
sparcl-tdep.o: sparcl-tdep.c $(defs_h) $(gdbcore_h) target.h
1808
 
1809
dsrec.o: dsrec.c $(defs_h) srec.h
1810
 
1811
stabsread.o: stabsread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1812
        $(INCLUDE_DIR)/aout/stab_gnu.h buildsym.h complaints.h $(defs_h) \
1813
        $(gdbtypes_h) objfiles.h stabsread.h symfile.h $(symtab_h) \
1814
        gdb_string.h
1815
 
1816
stack.o: stack.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) $(inferior_h) \
1817
        language.h target.h gdb_string.h
1818
 
1819
ui-file.o: ui-file.c $(defs_h) ui-file.h
1820
tui-file.o: $(srcdir)/tui/tui-file.c $(defs_h) $(srcdir)/tui/tui-file.h
1821
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/tui/tui-file.c
1822
 
1823
ax-general.o: ax-general.c $(ax_h) $(defs_h) $(value_h)
1824
ax-gdb.o: ax-gdb.c $(defs_h) $(symtab_h) symfile.h $(gdbtypes_h) \
1825
        $(value_h) $(expression_h) $(command_h) $(ax_h) $(gdbcmd_h) ax-gdb.h
1826
 
1827
sun3-nat.o: sun3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1828
 
1829
sun386-nat.o: sun386-nat.c $(defs_h) $(inferior_h) $(gdbcore_h)
1830
 
1831
symfile.o: symfile.c $(breakpoint_h) complaints.h $(defs_h) \
1832
        $(expression_h) $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) \
1833
        language.h objfiles.h symfile.h $(symtab_h) target.h \
1834
        gdb_string.h
1835
 
1836
symm-tdep.o: symm-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1837
 
1838
symm-nat.o: symm-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1839
 
1840
symmisc.o: symmisc.c $(bfd_h) $(breakpoint_h) $(command_h) $(defs_h) \
1841
        $(expression_h) $(gdbtypes_h) language.h objfiles.h symfile.h \
1842
        $(symtab_h) gdb_string.h
1843
 
1844
symtab.o: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \
1845
        $(gdbcmd_h) $(gdbcore_h) $(gdbtypes_h) language.h objfiles.h \
1846
        gnu-regex.h symfile.h $(symtab_h) target.h $(value_h) \
1847
        gdb_string.h
1848
 
1849
# OBSOLETE tahoe-tdep.o: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \
1850
# OBSOLETE      $(symtab_h)
1851
 
1852
tic80-tdep.o: tic80-tdep.c $(defs_h)
1853
 
1854
target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \
1855
        objfiles.h symfile.h target.h gdb_string.h
1856
 
1857
thread.o: thread.c $(defs_h) gdbthread.h $(gdbcmd_h) target.h
1858
 
1859
top.o: top.c top.h $(bfd_h) $(getopt_h) $(readline_headers) call-cmds.h \
1860
        $(defs_h) $(gdbcmd_h) $(inferior_h) language.h signals.h \
1861
        $(remote_utils_h) gdb_string.h $(event_loop_h) $(event_top_h) $(version_h)
1862
 
1863
typeprint.o: typeprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1864
        $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1865
        $(value_h) gdb_string.h
1866
 
1867
ultra3-nat.o: ultra3-nat.c $(defs_h) $(gdbcore_h) $(inferior_h)
1868
 
1869
ultra3-xdep.o: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1870
 
1871
umax-xdep.o: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h)
1872
 
1873
utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \
1874
        language.h signals.h target.h terminal.h $(readline_headers) \
1875
        gdb_string.h $(event_loop_h) $(event_top_h)
1876
 
1877
valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \
1878
        $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) \
1879
        gdb_string.h
1880
 
1881
valops.o: valops.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \
1882
        gdb_string.h
1883
 
1884
valprint.o: valprint.c $(defs_h) $(expression_h) $(gdbcmd_h) \
1885
        $(gdbcore_h) $(gdbtypes_h) language.h $(symtab_h) target.h \
1886
        $(value_h) gdb_string.h valprint.h
1887
 
1888
values.o: values.c $(defs_h) $(expression_h) $(frame_h) $(gdbcmd_h) \
1889
        $(gdbcore_h) $(gdbtypes_h) $(symtab_h) target.h $(value_h) \
1890
        gdb_string.h scm-lang.h
1891
 
1892
vax-tdep.o: vax-tdep.c $(OP_INCLUDE)/vax.h $(defs_h) $(symtab_h)
1893
 
1894
w65-tdep.o : w65-tdep.c $(gdbcore_h)
1895
 
1896
win32-nat.o: win32-nat.c $(gdbcmd_h) $(gdbcore_h) $(inferior_h) $(defs_h) \
1897
        gdb_string.h
1898
 
1899
xdr_ld.o: vx-share/xdr_ld.c $(defs_h) vx-share/vxTypes.h \
1900
        vx-share/vxWorks.h vx-share/xdr_ld.h
1901
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ld.c
1902
 
1903
xdr_ptrace.o: vx-share/xdr_ptrace.c $(defs_h) vx-share/vxTypes.h \
1904
        vx-share/vxWorks.h vx-share/xdr_ptrace.h
1905
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_ptrace.c
1906
 
1907
xdr_rdb.o: vx-share/xdr_rdb.c $(defs_h) vx-share/vxTypes.h \
1908
        vx-share/vxWorks.h vx-share/xdr_rdb.h
1909
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/vx-share/xdr_rdb.c
1910
 
1911
xcoffread.o: xcoffread.c $(bfd_h) $(INCLUDE_DIR)/aout/stab.def \
1912
        $(INCLUDE_DIR)/aout/stab_gnu.h $(INCLUDE_DIR)/coff/internal.h \
1913
        $(INCLUDE_DIR)/coff/rs6000.h $(BFD_SRC)/libcoff.h buildsym.h \
1914
        complaints.h $(defs_h) $(gdbtypes_h) objfiles.h stabsread.h symfile.h \
1915
        $(symtab_h) partial-stab.h gdb_string.h
1916
 
1917
xcoffsolib.o: xcoffsolib.c $(bfd_h) $(defs_h) xcoffsolib.h
1918
 
1919
# FIXME: z8k-tdep.c calls _initialize_gdbtypes().  Since that isn't
1920
# declared -Wimplicit fails. It should be using the GDBARCH framework.
1921
# cagney 1999-09-02.
1922
z8k-tdep.o: z8k-tdep.c $(bfd_h) $(dis-asm_h) $(defs_h) $(frame_h) \
1923
        $(gdbcmd_h) $(gdbtypes_h) $(symtab_h) $(gdbcore_h) $(value_h)
1924
        $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1925
 
1926
c-exp.tab.o: c-exp.tab.c c-lang.h $(defs_h) $(expression_h) \
1927
        $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1928
        $(bfd_h) objfiles.h symfile.h
1929
 
1930
jv-exp.tab.o: jv-exp.tab.c jv-lang.h $(defs_h) $(expression_h) \
1931
        $(gdbtypes_h) language.h parser-defs.h $(symtab_h) $(value_h) \
1932
        $(bfd_h) objfiles.h symfile.h
1933
 
1934
f-exp.tab.o: f-exp.tab.c f-lang.h $(defs_h) $(expression_h) \
1935
        language.h parser-defs.h $(value_h) $(bfd_h) objfiles.h symfile.h
1936
 
1937
m2-exp.tab.o: m2-exp.tab.c $(defs_h) $(expression_h) $(gdbtypes_h) \
1938
        language.h m2-lang.h parser-defs.h $(symtab_h) $(value_h) \
1939
        $(bfd_h) objfiles.h symfile.h
1940
 
1941
gdb-events.o: gdb-events.c gdb-events.h $(defs_h) $(gdbcmd_h)
1942
 
1943
ui-out.o: ui-out.c $(defs_h) $(ui_out_h) expression.h language.h
1944
cli-out.o: cli-out.c $(defs_h) $(ui_out_h) $(cli_out_h)
1945
varobj.o: varobj.c $(defs_h) $(frame_h) $(value_h) \
1946
        $(language_h) valprint.h varobj.h wrapper.h
1947
        $(CC) -c $(INTERNAL_WARN_CFLAGS) $(NO_WERROR_CFLAGS) $<
1948
wrapper.o: wrapper.c $(defs_h) $(frame_h) $(value_h) wrapper.h
1949
 
1950
#
1951
# MI dependencies
1952
#
1953
# Need to explicitly specify the compile rule as make will do nothing
1954
# or try to compile the object file into the mi directory.
1955
 
1956
mi_cmds_h =     $(srcdir)/mi/mi-cmds.h
1957
mi_out_h =      $(srcdir)/mi/mi-out.h
1958
mi_parse_h =    $(srcdir)/mi/mi-parse.h
1959
mi_getopt_h =   $(srcdir)/mi/mi-getopt.h
1960
mi_console_h =  $(srcdir)/mi/mi-console.h
1961
 
1962
mi-cmds.o: $(srcdir)/mi/mi-cmds.c $(defs_h) $(top_h) $(mi_cmds_h) $(ui_out_h)
1963
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmds.c
1964
mi-cmd-var.o: $(srcdir)/mi/mi-cmd-var.c $(defs_h) $(top_h) $(mi_cmds_h) \
1965
                $(ui_out_h)
1966
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-var.c
1967
mi-cmd-stack.o: $(srcdir)/mi/mi-cmd-stack.c $(defs_h) $(top_h) $(mi_cmds_h) \
1968
                $(ui_out_h) $(frame_h) $(value_h) $(target_h)
1969
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-stack.c
1970
mi-cmd-break.o: $(srcdir)/mi/mi-cmd-break.c $(defs_h) $(mi_cmds_h) \
1971
                $(ui_out_h) $(mi_getopt_h)
1972
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-break.c
1973
mi-cmd-disas.o: $(srcdir)/mi/mi-cmd-disas.c $(defs_h) $(mi_cmds_h) \
1974
                $(ui_out_h) $(value_h) $(target_h)
1975
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-cmd-disas.c
1976
mi-main.o: $(srcdir)/mi/mi-main.c $(defs_h) $(top_h) $(mi_cmds_h) $(ui_out_h) \
1977
                $(mi_console_h) $(mi_getopt_h) $(event_loop_h) $(event_top_h) \
1978
                $(mi_getopt_h)
1979
        $(CC) -c $(INTERNAL_WARN_CFLAGS) $(srcdir)/mi/mi-main.c
1980
mi-out.o: $(srcdir)/mi/mi-out.c $(defs_h) $(mi_out_h) $(ui_out_h)
1981
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-out.c
1982
mi-console.o: $(srcdir)/mi/mi-console.c $(mi_out_h) $(defs_h)
1983
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-console.c
1984
mi-parse.o: $(srcdir)/mi/mi-parse.c $(defs_h) $(mi_parse_h) $(mi_cmds_h)
1985
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-parse.c
1986
mi-getopt.o: $(srcdir)/mi/mi-getopt.c $(mi_getopt_h) $(defs_h)
1987
        $(CC) -c $(INTERNAL_CFLAGS) $(srcdir)/mi/mi-getopt.c
1988
 
1989
### end of the gdb Makefile.in.

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.