]>
Commit | Line | Data |
---|---|---|
8dc3e3d7 SS |
1 | XM_ADD_FILES = |
2 | TM_ADD_FILES = | |
3 | NAT_ADD_FILES = | |
4 | XM_CDEPS = | |
5 | TM_CDEPS = | |
6 | NAT_CDEPS = | |
7 | ||
939baabe SS |
8 | XDEPFILES = "{o}"mac-xdep.c.o |
9 | ||
8dc3e3d7 SS |
10 | CC_LD = Link |
11 | ||
12 | gC = gC1 | |
13 | ||
14 | s = "{srcdir}" | |
15 | ||
16 | o = : | |
17 | ||
18 | # File in object dir can come from either the current dir or srcdir. | |
19 | ||
20 | "{o}" \Option-f : "{s}" | |
21 | ||
22 | # Default rule that puts each file into separate segment. | |
23 | ||
24 | .c.o \Option-f .c | |
25 | {CC} {DepDir}{Default}.c {INTERNAL_CFLAGS} {SymOptions} -s {Default} -o {TargDir}{Default}.c.o | |
26 | ||
27 | .gc.o \Option-f .c | |
28 | {gC} {DepDir}{Default}.c {INTERNAL_CFLAGS} {SymOptions} -s {Default} -o {TargDir}{Default}.gc.o | |
29 | ||
30 | #Copyright 1989, 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc. | |
31 | ||
32 | # This file is part of GDB. | |
33 | ||
34 | # This program is free software; you can redistribute it and:or modify | |
35 | # it under the terms of the GNU General Public License as published by | |
36 | # the Free Software Foundation; either version 2 of the License, or | |
37 | # (at your option) any later version. | |
38 | # | |
39 | # This program is distributed in the hope that it will be useful, | |
40 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
41 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
42 | # GNU General Public License for more details. | |
43 | # | |
44 | # You should have received a copy of the GNU General Public License | |
45 | # along with this program; if not, write to the Free Software | |
46 | # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
47 | ||
48 | prefix = :usr:local | |
49 | ||
50 | program_transform_name = | |
51 | exec_prefix = {prefix} | |
52 | bindir = {exec_prefix}:bin | |
53 | libdir = {exec_prefix}:lib | |
54 | tooldir = {libdir}:{target_alias} | |
55 | ||
56 | datadir = {prefix}:lib | |
57 | mandir = {prefix}:man | |
58 | man1dir = {mandir}:man1 | |
59 | man2dir = {mandir}:man2 | |
60 | man3dir = {mandir}:man3 | |
61 | man4dir = {mandir}:man4 | |
62 | man5dir = {mandir}:man5 | |
63 | man6dir = {mandir}:man6 | |
64 | man7dir = {mandir}:man7 | |
65 | man8dir = {mandir}:man8 | |
66 | man9dir = {mandir}:man9 | |
67 | infodir = {prefix}:info | |
68 | includedir = {prefix}:include | |
69 | docdir = {datadir}:doc | |
70 | ||
71 | SHELL = :bin:sh | |
72 | ||
73 | INSTALL = Duplicate -y | |
74 | INSTALL_PROGRAM = {INSTALL} | |
75 | INSTALL_DATA = {INSTALL} | |
76 | INSTALL_XFORM = {INSTALL} -t='{program_transform_name}' | |
77 | INSTALL_XFORM1 = {INSTALL_XFORM} -b=.1 | |
78 | ||
79 | AR = ar | |
80 | AR_FLAGS = qv | |
81 | RANLIB = ranlib | |
82 | ||
83 | # Flags that describe where you can find the termcap library. | |
84 | # This can be overridden in the host Makefile fragment file. | |
85 | TERMCAP = -ltermcap | |
86 | ||
87 | # If you are compiling with GCC, make sure that either 1) You have the | |
88 | # fixed include files where GCC can reach them, or 2) You use the | |
89 | # -traditional flag. Otherwise the ioctl calls in "{s}"inflow.c | |
90 | # will be incorrectly compiled. The "fixincludes" script in the gcc | |
91 | # distribution will fix your include files up. | |
92 | #CC=gcc -traditional | |
93 | ||
94 | # Directory containing source files. Don't clean up the spacing, | |
95 | # this exact string is matched for by the "configure" script. | |
96 | # srcdir = : | |
97 | ||
98 | # If you use bison instead of yacc, it needs to include the "-y" argument. | |
99 | BISON=bison -y | |
100 | #BISON=yacc | |
101 | YACC={BISON} | |
102 | ||
103 | # where to find makeinfo, preferably one designed for texinfo-2 | |
104 | MAKEINFO=makeinfo | |
105 | ||
106 | # Set this up with gcc if you have gnu ld and the loader will print out | |
107 | # line numbers for undefined references. | |
108 | #CC-LD=gcc -static | |
109 | CC-LD={CC} | |
110 | ||
111 | # Where is our "include" directory? Typically "{srcdir}":include. | |
112 | # This is essentially the header file directory for the library | |
113 | # routines in libiberty. | |
114 | INCLUDE_DIR = "{srcroot}"include | |
115 | INCLUDE_CFLAGS = -i {INCLUDE_DIR} -i {INCLUDE_DIR}:mpw -i ::extra-include -i "{srcroot}"bfd | |
116 | # Where is the "-liberty" library, containing getopt and obstack? | |
117 | LIBIBERTY = ::libiberty:libiberty.o | |
118 | ||
119 | # Where is the MMALLOC library? Typically ::mmalloc. | |
120 | # Note that mmalloc can still be used on systems without mmap(). | |
121 | # To use your system malloc, comment out the following defines. | |
122 | MMALLOC = ::mmalloc:libmmalloc.o | |
123 | # To use your system malloc, uncomment MMALLOC_DISABLE. | |
124 | MMALLOC_DISABLE = -d NO_MMALLOC | |
125 | # To use mmalloc but disable corruption checking, uncomment MMALLOC_CHECK | |
126 | #MMALLOC_CHECK = -d NO_MMALLOC_CHECK | |
127 | MMALLOC_CFLAGS = {MMALLOC_DISABLE} | |
128 | ||
129 | # Where are the BFD library? | |
130 | BFD_DIR = ::bfd | |
131 | BFD = {BFD_DIR}:libbfd.o | |
132 | BFD_SRC = "{srcdir}"{BFD_DIR} | |
133 | BFD_CFLAGS = -i {BFD_DIR} -i {BFD_SRC} | |
134 | ||
135 | # Where is the READLINE library? Typically in ::readline. | |
136 | #READLINE_DIR = ::readline | |
137 | READLINE = {READLINE_DIR}:libreadline.o | |
138 | READLINE_DISABLE = -d NO_READLINE | |
139 | #READLINE_SRC = "{srcdir}"{READLINE_DIR} | |
140 | #READLINE_CFLAGS = -i {READLINE_SRC} | |
141 | READLINE_CFLAGS = {READLINE_DISABLE} | |
142 | ||
143 | # Opcodes currently live in one of two places. Either they are in the | |
144 | # opcode library, typically ::opcodes, or they are in a header file | |
145 | # in INCLUDE_DIR. | |
146 | # Where is the "-lopcodes" library, with (some of) the opcode tables and | |
147 | # disassemblers? | |
148 | OPCODES = ::opcodes:libopcodes.o | |
149 | # Where are the other opcode tables which only have header file | |
150 | # versions? | |
151 | OP_INCLUDE = {INCLUDE_DIR}:opcode | |
152 | OPCODES_CFLAGS = -i {OP_INCLUDE} | |
153 | ||
154 | # All the includes used for CFLAGS and for lint. | |
155 | # -i : for config files. | |
156 | # -i {srcdir} for gdb internal headers and possibly for "{s}"regex.h also. | |
157 | # -i "{srcdir}"config for more generic config files. | |
158 | ||
159 | # It is also possible that you will need to add -i :usr:include:sys if | |
160 | # your system doesn't have "{s}"fcntl.h in :usr:include (which is where it | |
161 | # should be according to Posix). | |
162 | GDB_CFLAGS = -i : -i {srcdir} -i "{srcdir}"config | |
163 | ||
164 | # M{H,T}_CFLAGS, if defined, have host- and target-dependent CFLAGS | |
165 | # from the config directory. | |
166 | GLOBAL_CFLAGS = {MT_CFLAGS} {MH_CFLAGS} | |
167 | #PROFILE_CFLAGS = -pg | |
168 | ||
169 | # CFLAGS is specifically reserved for setting from the command line | |
170 | # when running make. I.E. "make CFLAGS=-Wmissing-prototypes". | |
171 | #CFLAGS = -g | |
172 | ||
173 | # Need to pass this to testsuite for "make check". Probably should be | |
174 | # consistent with top-level Makefile.in and gdb:testsuite:Makefile.in | |
175 | # so "make check" has the same result no matter where it is run. | |
176 | CXXFLAGS = -g -O | |
177 | ||
178 | # INTERNAL_CFLAGS is the aggregate of all other \Option-xCFLAGS macros. | |
179 | INTERNAL_CFLAGS = {CFLAGS} {GLOBAL_CFLAGS} {PROFILE_CFLAGS} \Option-d | |
180 | {GDB_CFLAGS} {OPCODES_CFLAGS} \Option-d | |
181 | {BFD_CFLAGS} {MMALLOC_CFLAGS} {READLINE_CFLAGS} {INCLUDE_CFLAGS} | |
182 | ||
183 | # LDFLAGS is specifically reserved for setting from the command line | |
184 | # when running make. | |
185 | ||
186 | # Profiling options need to go here to work. | |
187 | # I think it's perfectly reasonable for a user to set -pg in CFLAGS | |
188 | # and have it work; that's why CFLAGS is here. | |
189 | INTERNAL_LDFLAGS = {CFLAGS} {GLOBAL_CFLAGS} {PROFILE_CFLAGS} {LDFLAGS} | |
190 | ||
191 | # We are using our own version of REGEX now to be consistent across | |
192 | # machines. | |
193 | REGEX = "{o}"regex.c.o | |
194 | REGEX1 = "{o}"regex.c.o | |
195 | ||
196 | # If your system is missing alloca(), or, more likely, it's there but | |
197 | # it doesn't work, then refer to libiberty. | |
198 | ||
199 | # Libraries and corresponding dependencies for compiling gdb. | |
200 | # {X,T}M_CLIBS, defined in \Option-xconfig files, have host- and target-dependent libs. | |
201 | # TERMCAP comes after readline, since readline depends on it. | |
202 | # If you have the Cygnus libraries installed, | |
203 | # you can use 'CLIBS={INSTALLED_LIBS}' 'CDEPS=' | |
204 | INSTALLED_LIBS=-lbfd -lreadline {TERMCAP} -lopcodes -lmmalloc \Option-d | |
205 | liberty {XM_CLIBS} {TM_CLIBS} {NAT_CLIBS} | |
206 | CLIBS = {BFD} {OPCODES} \Option-d | |
207 | {LIBIBERTY} {XM_CLIBS} {TM_CLIBS} {NAT_CLIBS} | |
208 | CDEPS = {XM_CDEPS} {TM_CDEPS} {NAT_CDEPS} \Option-d | |
209 | {BFD} {OPCODES} {LIBIBERTY} | |
210 | ||
211 | ADD_FILES = {REGEX} {XM_ADD_FILES} {TM_ADD_FILES} {NAT_ADD_FILES} | |
212 | ADD_DEPS = {REGEX1} {XM_ADD_FILES} {TM_ADD_FILES} {NAT_ADD_FILES} | |
213 | ||
214 | VERSION = 4.12.1 | |
215 | DIST=gdb | |
216 | ||
217 | LINT=:usr:5bin:lint | |
218 | LINTFLAGS= {BFD_CFLAGS} | |
219 | ||
220 | RUNTEST = `if [ -f $"{srcdir}":dejagnu:runtest ] ; then \Option-d | |
221 | echo $"{srcdir}":dejagnu:runtest ; else echo runtest; \Option-d | |
222 | fi` | |
223 | ||
224 | RUNTESTFLAGS= | |
225 | ||
226 | # This is "{o}"ser-unix.c.o for any system which supports a v7:BSD:SYSV:POSIX | |
227 | # interface to the serial port. Hopefully if get ported to OS:2, VMS, | |
228 | # etc., then there will be (as part of the C library or perhaps as | |
229 | # part of libiberty) a POSIX interface. But at least for now the | |
230 | # host-dependent makefile fragment might need to use something else | |
231 | # besides "{o}"ser-unix.c.o | |
232 | SER_HARDWIRE = "{o}"ser-mac.c.o | |
233 | ||
234 | # The `remote' debugging target is supported for most architectures, | |
235 | # but not all (e.g. 960) | |
236 | REMOTE_O = "{o}"remote.c.o "{o}"dcache.c.o "{o}"remote-utils.c.o | |
237 | ||
238 | # Host and target-dependent makefile fragments come in here. | |
239 | #### | |
240 | # End of host and target-dependent makefile fragments | |
241 | ||
242 | FLAGS_TO_PASS = \Option-d | |
243 | "prefix={prefix}" \Option-d | |
244 | "exec_prefix={exec_prefix}" \Option-d | |
245 | "against={against}" \Option-d | |
246 | "AR={AR}" \Option-d | |
247 | "AR_FLAGS={AR_FLAGS}" \Option-d | |
248 | "CC={CC}" \Option-d | |
249 | "CFLAGS={CFLAGS}" \Option-d | |
250 | "CHILLFLAGS={CHILLFLAGS}" \Option-d | |
251 | "CHILL={CHILL}" \Option-d | |
252 | "CHILL_LIB={CHILL_LIB}" \Option-d | |
253 | "CXX={CXX}" \Option-d | |
254 | "CXXFLAGS={CXXFLAGS}" \Option-d | |
255 | "RANLIB={RANLIB}" \Option-d | |
256 | "MAKEINFO={MAKEINFO}" \Option-d | |
257 | "INSTALL={INSTALL}" \Option-d | |
258 | "INSTALL_PROGRAM={INSTALL_PROGRAM}" \Option-d | |
259 | "INSTALL_DATA={INSTALL_DATA}" \Option-d | |
260 | "RUNTEST={RUNTEST}" \Option-d | |
261 | "RUNTESTFLAGS={RUNTESTFLAGS}" \Option-d | |
262 | "BISON={BISON}" | |
263 | ||
264 | # Flags that we pass when building the testsuite. | |
265 | ||
266 | CC_FOR_TARGET = ` \Option-d | |
267 | if [ -f ${rootme}:::gcc:xgcc ] ; then \Option-d | |
268 | echo ${rootme}:::gcc:xgcc -B${rootme}:::gcc:; \Option-d | |
269 | else \Option-d | |
270 | if [ "{host_canonical}" = "{target_canonical}" ] ; then \Option-d | |
271 | echo {CC}; \Option-d | |
272 | else \Option-d | |
273 | t='{program_transform_name}'; echo gcc | sed -e '' $$t; \Option-d | |
274 | fi; \Option-d | |
275 | fi` | |
276 | ||
277 | CXX = gcc | |
278 | ||
279 | CXX_FOR_TARGET = ` \Option-d | |
280 | if [ -f ${rootme}:::gcc:Makefile ] ; then \Option-d | |
281 | echo ${rootme}:::gcc:xgcc -B${rootme}:::gcc:; \Option-d | |
282 | else \Option-d | |
283 | if [ "{host_canonical}" = "{target_canonical}" ] ; then \Option-d | |
284 | echo {CXX}; \Option-d | |
285 | else \Option-d | |
286 | t='{program_transform_name}'; echo gcc | sed -e '' $$t; \Option-d | |
287 | fi; \Option-d | |
288 | fi` | |
289 | ||
290 | CHILLFLAGS = {CFLAGS} | |
291 | CHILL = gcc | |
292 | CHILL_FOR_TARGET = ` \Option-d | |
293 | if [ -f ${rootme}:::gcc:Makefile ] ; then \Option-d | |
294 | echo ${rootme}:::gcc:xgcc -B${rootme}:::gcc: -L${rootme}:::chillrt:; \Option-d | |
295 | else \Option-d | |
296 | if [ "{host_canonical}" = "{target_canonical}" ] ; then \Option-d | |
297 | echo {CC}; \Option-d | |
298 | else \Option-d | |
299 | t='{program_transform_name}'; echo gcc | sed -e '' $$t; \Option-d | |
300 | fi; \Option-d | |
301 | fi` | |
302 | CHILL_LIB = -lchill | |
303 | ||
304 | # The use of ${x_FOR_TARGET} reduces the command line length by not | |
305 | # duplicating the lengthy definition. | |
306 | TARGET_FLAGS_TO_PASS = \Option-d | |
307 | "prefix={prefix}" \Option-d | |
308 | "exec_prefix={exec_prefix}" \Option-d | |
309 | "against={against}" \Option-d | |
310 | 'CC=${CC_FOR_TARGET}' \Option-d | |
311 | "CC_FOR_TARGET={CC_FOR_TARGET}" \Option-d | |
312 | "CFLAGS={CFLAGS}" \Option-d | |
313 | "CHILLFLAGS={CHILLFLAGS}" \Option-d | |
314 | 'CHILL=${CHILL_FOR_TARGET}' \Option-d | |
315 | "CHILL_FOR_TARGET={CHILL_FOR_TARGET}" \Option-d | |
316 | "CHILL_LIB={CHILL_LIB}" \Option-d | |
317 | 'CXX=${CXX_FOR_TARGET}' \Option-d | |
318 | "CXX_FOR_TARGET={CXX_FOR_TARGET}" \Option-d | |
319 | "CXXFLAGS={CXXFLAGS}" \Option-d | |
320 | "MAKEINFO={MAKEINFO}" \Option-d | |
321 | "INSTALL={INSTALL}" \Option-d | |
322 | "INSTALL_PROGRAM={INSTALL_PROGRAM}" \Option-d | |
323 | "INSTALL_DATA={INSTALL_DATA}" \Option-d | |
324 | "RUNTEST={RUNTEST}" \Option-d | |
325 | "RUNTESTFLAGS={RUNTESTFLAGS}" \Option-d | |
326 | "BISON={BISON}" | |
327 | ||
328 | ALLDEPFILES = "{s}"29k-share:udi:udip2soc.c "{s}"29k-share:udi:udr.c \Option-d | |
329 | "{s}"29k-share:udi:udi2go32.c \Option-d | |
330 | "{s}"a29k-pinsn.c "{s}"a29k-tdep.c "{s}"a68v-nat.c "{s}"alpha-nat.c "{s}"alpha-tdep.c \Option-d | |
331 | "{s}"altos-xdep.c arm-convert.s \Option-d | |
332 | "{s}"arm-pinsn.c "{s}"arm-tdep.c "{s}"arm-xdep.c "{s}"coff-solib.c "{s}"convex-pinsn.c \Option-d | |
333 | "{s}"convex-tdep.c \Option-d | |
334 | "{s}"convex-xdep.c "{s}"core-svr4.c "{s}"coredep.c "{s}"corelow.c "{s}"dcache.c "{s}"delta68-nat.c \Option-d | |
335 | "{s}"dpx2-nat.c "{s}"dstread.c "{s}"exec.c "{s}"fork-child.c \Option-d | |
336 | "{s}"go32-xdep.c "{s}"gould-pinsn.c "{s}"gould-xdep.c "{s}"h8300-tdep.c "{s}"h8500-tdep.c \Option-d | |
337 | "{s}"hp300ux-nat.c "{s}"hppa-pinsn.c "{s}"hppa-tdep.c "{s}"hppab-nat.c "{s}"hppah-nat.c \Option-d | |
338 | "{s}"i386-pinsn.c "{s}"i386-tdep.c "{s}"i386b-nat.c "{s}"i386mach-nat.c "{s}"i386v-nat.c \Option-d | |
339 | "{s}"i386aix-nat.c "{s}"i386m3-nat.c "{s}"i386v4-nat.c "{s}"i386ly-tdep.c \Option-d | |
340 | "{s}"i387-tdep.c \Option-d | |
341 | "{s}"i960-pinsn.c "{s}"i960-tdep.c \Option-d | |
342 | "{s}"infptrace.c "{s}"inftarg.c "{s}"irix4-nat.c "{s}"irix5-nat.c "{s}"isi-xdep.c \Option-d | |
343 | "{s}"lynx-nat.c "{s}"m3-nat.c \Option-d | |
344 | "{s}"m68k-pinsn.c "{s}"m68k-tdep.c \Option-d | |
345 | "{s}"m88k-nat.c "{s}"m88k-pinsn.c "{s}"m88k-tdep.c "{s}"mips-nat.c "{s}"mips-pinsn.c \Option-d | |
346 | "{s}"mips-tdep.c "{s}"mipsm3-nat.c "{s}"news-xdep.c \Option-d | |
347 | "{s}"nindy-share:Onindy.c "{s}"nindy-share:nindy.c \Option-d | |
348 | "{s}"nindy-share:ttyflush.c "{s}"nindy-tdep.c \Option-d | |
349 | "{s}"ns32k-pinsn.c "{s}"ns32km3-nat.c "{s}"osfsolib.c \Option-d | |
350 | "{s}"paread.c "{s}"procfs.c "{s}"pyr-pinsn.c "{s}"pyr-tdep.c "{s}"pyr-xdep.c \Option-d | |
351 | "{s}"remote-adapt.c "{s}"remote-bug.c "{s}"remote-e7000.c "{s}"remote-eb.c "{s}"remote-es.c \Option-d | |
352 | "{s}"remote-hms.c "{s}"remote-mips.c \Option-d | |
353 | "{s}"remote-mm.c "{s}"remote-mon.c "{s}"remote-nindy.c "{s}"remote-sim.c \Option-d | |
354 | "{s}"remote-st.c "{s}"remote-utils.c "{s}"dcache.c \Option-d | |
355 | "{s}"remote-udi.c "{s}"remote-vx.c "{s}"remote-z8k.c "{s}"rs6000-nat.c "{s}"rs6000-pinsn.c \Option-d | |
356 | "{s}"rs6000-tdep.c "{s}"ser-go32.c "{s}"ser-tcp.c "{s}"sh-tdep.c "{s}"solib.c "{s}"sparc-nat.c \Option-d | |
357 | "{s}"sparc-pinsn.c "{s}"sparc-tdep.c "{s}"sun3-nat.c "{s}"sun386-nat.c \Option-d | |
358 | "{s}"symm-tdep.c "{s}"symm-nat.c \Option-d | |
359 | "{s}"tahoe-pinsn.c "{s}"ultra3-nat.c "{s}"ultra3-xdep.c "{s}"umax-xdep.c \Option-d | |
360 | "{s}"vax-pinsn.c \Option-d | |
361 | "{s}"vx-share:xdr_ld.c "{s}"vx-share:xdr_ptrace.c "{s}"vx-share:xdr_rdb.c \Option-d | |
362 | "{s}"xcoffexec.c "{s}"xcoffread.c "{s}"xcoffsolib.c "{s}"z8k-tdep.c | |
363 | ||
364 | ALLPARAM = "{s}"config:a29k:nm-ultra3.h "{s}"config:a29k:tm-a29k.h \Option-d | |
365 | "{s}"config:a29k:tm-ultra3.h "{s}"config:a29k:xm-ultra3.h \Option-d | |
366 | "{s}"config:alpha:nm-alpha.h "{s}"config:alpha:tm-alpha.h \Option-d | |
367 | "{s}"config:alpha:xm-alpha.h "{s}"config:arm:tm-arm.h \Option-d | |
368 | "{s}"config:arm:xm-arm.h "{s}"config:convex:tm-convex.h \Option-d | |
369 | "{s}"config:convex:xm-convex.h "{s}"config:gould:tm-np1.h "{s}"config:gould:tm-pn.h \Option-d | |
370 | "{s}"config:gould:xm-np1.h "{s}"config:gould:xm-pn.h "{s}"config:h8300:tm-h8300.h \Option-d | |
371 | "{s}"config:h8500:tm-h8500.h "{s}"config:i386:nm-i386aix.h \Option-d | |
372 | "{s}"config:i386:nm-i386bsd.h "{s}"config:i386:nm-i386lynx.h \Option-d | |
373 | "{s}"config:i386:nm-i386mach.h "{s}"config:i386:nm-i386sco.h \Option-d | |
374 | "{s}"config:i386:nm-i386sco4.h "{s}"config:i386:nm-i386v.h \Option-d | |
375 | "{s}"config:i386:nm-i386v4.h "{s}"config:i386:nm-linux.h \Option-d | |
376 | "{s}"config:i386:nm-sun386.h "{s}"config:i386:nm-symmetry.h \Option-d | |
377 | "{s}"config:i386:tm-i386aix.h "{s}"config:i386:tm-i386bsd.h \Option-d | |
378 | "{s}"config:i386:tm-i386lynx.h "{s}"config:i386:tm-i386m3.h \Option-d | |
379 | "{s}"config:i386:tm-i386mk.h "{s}"config:i386:tm-i386nw.h \Option-d | |
380 | "{s}"config:i386:tm-i386v.h \Option-d | |
381 | "{s}"config:i386:tm-i386v4.h "{s}"config:i386:tm-linux.h \Option-d | |
382 | "{s}"config:i386:tm-sun386.h \Option-d | |
383 | "{s}"config:i386:tm-symmetry.h "{s}"config:i386:xm-go32.h \Option-d | |
384 | "{s}"config:i386:xm-i386aix.h "{s}"config:i386:xm-i386bsd.h \Option-d | |
385 | "{s}"config:i386:xm-i386lynx.h "{s}"config:i386:xm-i386mach.h \Option-d | |
386 | "{s}"config:i386:xm-i386m3.h "{s}"config:i386:xm-i386mk.h \Option-d | |
387 | "{s}"config:i386:xm-i386sco.h "{s}"config:i386:xm-i386v.h \Option-d | |
388 | "{s}"config:i386:xm-i386v32.h "{s}"config:i386:xm-i386v4.h \Option-d | |
389 | "{s}"config:i386:xm-linux.h "{s}"config:i386:xm-sun386.h \Option-d | |
390 | "{s}"config:i386:xm-symmetry.h "{s}"config:i960:tm-nindy960.h \Option-d | |
391 | "{s}"config:i960:tm-vx960.h "{s}"config:m68k:nm-apollo68b.h \Option-d | |
392 | "{s}"config:m68k:nm-apollo68v.h "{s}"config:m68k:nm-delta68.h \Option-d | |
393 | "{s}"config:m68k:nm-dpx2.h "{s}"config:m68k:nm-hp300bsd.h \Option-d | |
394 | "{s}"config:m68k:nm-hp300hpux.h "{s}"config:m68k:nm-news.h \Option-d | |
395 | "{s}"config:m68k:nm-m68klynx.h \Option-d | |
396 | "{s}"config:m68k:nm-sun2.h \Option-d | |
397 | "{s}"config:m68k:nm-sun3.h "{s}"config:m68k:tm-3b1.h "{s}"config:m68k:tm-altos.h \Option-d | |
398 | "{s}"config:m68k:tm-apollo68b.h \Option-d | |
399 | "{s}"config:m68k:tm-amix.h "{s}"config:m68k:tm-delta68.h \Option-d | |
400 | "{s}"config:m68k:tm-dpx2.h "{s}"config:m68k:tm-es1800.h \Option-d | |
401 | "{s}"config:m68k:tm-hp300bsd.h "{s}"config:m68k:tm-hp300hpux.h \Option-d | |
402 | "{s}"config:m68k:tm-isi.h "{s}"config:m68k:tm-m68klynx.h \Option-d | |
403 | "{s}"config:m68k:tm-monitor.h \Option-d | |
404 | "{s}"config:m68k:tm-news.h "{s}"config:m68k:tm-os68k.h "{s}"config:m68k:tm-st2000.h \Option-d | |
405 | "{s}"config:m68k:tm-sun2.h "{s}"config:m68k:tm-sun2os4.h "{s}"config:m68k:tm-sun3.h \Option-d | |
406 | "{s}"config:m68k:tm-sun3os4.h "{s}"config:m68k:tm-vx68.h "{s}"config:m68k:xm-3b1.h \Option-d | |
407 | "{s}"config:m68k:xm-altos.h "{s}"config:m68k:xm-amix.h \Option-d | |
408 | "{s}"config:m68k:xm-apollo68b.h "{s}"config:m68k:xm-apollo68v.h \Option-d | |
409 | "{s}"config:m68k:xm-delta68.h "{s}"config:m68k:xm-dpx2.h \Option-d | |
410 | "{s}"config:m68k:xm-hp300bsd.h "{s}"config:m68k:xm-hp300hpux.h \Option-d | |
411 | "{s}"config:m68k:xm-isi.h "{s}"config:m68k:xm-m68klynx.h \Option-d | |
412 | "{s}"config:m68k:xm-news.h "{s}"config:m68k:xm-news1000.h \Option-d | |
413 | "{s}"config:m68k:xm-sun2.h "{s}"config:m68k:xm-sun3.h "{s}"config:m68k:xm-sun3os4.h \Option-d | |
414 | "{s}"config:m88k:nm-delta88v4.h "{s}"config:m88k:nm-m88k.h \Option-d | |
415 | "{s}"config:m88k:tm-delta88.h \Option-d | |
416 | "{s}"config:m88k:tm-delta88v4.h "{s}"config:m88k:tm-m88k.h \Option-d | |
417 | "{s}"config:m88k:xm-delta88.h "{s}"config:m88k:xm-delta88v4.h \Option-d | |
418 | "{s}"config:m88k:xm-dgux.h "{s}"config:m88k:xm-m88k.h \Option-d | |
419 | "{s}"config:mips:nm-irix3.h \Option-d | |
420 | "{s}"config:mips:nm-irix4.h "{s}"config:mips:nm-irix5.h \Option-d | |
421 | "{s}"config:mips:nm-mips.h "{s}"config:mips:nm-riscos.h \Option-d | |
422 | "{s}"config:mips:nm-news-mips.h "{s}"config:mips:tm-bigmips.h \Option-d | |
423 | "{s}"config:mips:tm-idt.h "{s}"config:mips:tm-idtl.h \Option-d | |
424 | "{s}"config:mips:tm-irix3.h "{s}"config:mips:tm-irix5.h \Option-d | |
425 | "{s}"config:mips:tm-mips.h "{s}"config:mips:tm-mipsm3.h \Option-d | |
426 | "{s}"config:mips:xm-irix3.h \Option-d | |
427 | "{s}"config:mips:xm-irix4.h "{s}"config:mips:xm-irix5.h \Option-d | |
428 | "{s}"config:mips:xm-makeva.h "{s}"config:mips:xm-mips.h \Option-d | |
429 | "{s}"config:mips:xm-mipsm3.h \Option-d | |
430 | "{s}"config:mips:xm-riscos.h "{s}"config:mips:xm-news-mips.h \Option-d | |
431 | "{s}"config:nm-lynx.h "{s}"config:nm-sysv4.h \Option-d | |
432 | "{s}"config:none:nm-none.h "{s}"config:none:tm-none.h "{s}"config:none:xm-none.h \Option-d | |
433 | "{s}"config:ns32k:nm-umax.h \Option-d | |
434 | "{s}"config:ns32k:tm-ns32km3.h \Option-d | |
435 | "{s}"config:ns32k:tm-merlin.h "{s}"config:ns32k:tm-umax.h \Option-d | |
436 | "{s}"config:ns32k:xm-ns32km3.h \Option-d | |
437 | "{s}"config:ns32k:xm-merlin.h "{s}"config:ns32k:xm-umax.h \Option-d | |
438 | "{s}"config:pa:nm-hppab.h \Option-d | |
439 | "{s}"config:pa:nm-hppah.h "{s}"config:pa:tm-hppab.h "{s}"config:pa:tm-hppah.h \Option-d | |
440 | "{s}"config:pa:xm-hppab.h "{s}"config:pa:xm-hppah.h "{s}"config:pa:xm-pa.h \Option-d | |
441 | "{s}"config:pyr:tm-pyr.h \Option-d | |
442 | "{s}"config:pyr:xm-pyr.h "{s}"config:romp:xm-rtbsd.h "{s}"config:rs6000:nm-rs6000.h \Option-d | |
443 | "{s}"config:rs6000:tm-rs6000.h "{s}"config:rs6000:xm-rs6000.h "{s}"config:sh:tm-sh.h \Option-d | |
444 | "{s}"config:sparc:nm-sun4os4.h "{s}"config:sparc:nm-sparclynx.h \Option-d | |
445 | "{s}"config:sparc:tm-sparclite.h "{s}"config:sparc:tm-sparclynx.h \Option-d | |
446 | "{s}"config:sparc:tm-spc-em.h "{s}"config:sparc:tm-sun4os4.h \Option-d | |
447 | "{s}"config:sparc:tm-sun4sol2.h "{s}"config:sparc:tm-vxsparc.h \Option-d | |
448 | "{s}"config:sparc:xm-sparclynx.h \Option-d | |
449 | "{s}"config:sparc:xm-sun4os4.h "{s}"config:sparc:xm-sun4sol2.h \Option-d | |
450 | "{s}"config:tahoe:tm-tahoe.h "{s}"config:tahoe:xm-tahoe.h "{s}"config:vax:nm-vax.h \Option-d | |
451 | "{s}"config:vax:tm-vax.h "{s}"config:vax:xm-vaxbsd.h "{s}"config:vax:xm-vaxult.h \Option-d | |
452 | "{s}"config:vax:xm-vaxult2.h "{s}"config:z8k:tm-z8k.h | |
453 | ||
454 | ALLCONFIG = config:a29k:a29k-kern.mt config:a29k:a29k-udi.mt \Option-d | |
455 | config:a29k:a29k.mt config:a29k:ultra3.mh config:a29k:ultra3.mt \Option-d | |
456 | config:alpha:alpha-osf1.mh config:alpha:alpha-osf1.mt \Option-d | |
457 | config:alpha:alpha-nw.mt \Option-d | |
458 | config:arm:arm.mh config:arm:arm.mt config:convex:convex.mh \Option-d | |
459 | config:convex:convex.mt config:gould:np1.mh config:gould:np1.mt \Option-d | |
460 | config:gould:pn.mh config:gould:pn.mt config:h8300:h8300hms.mt \Option-d | |
461 | config:h8500:h8500hms.mt config:i386:go32.mh config:i386:i386aix.mh \Option-d | |
462 | config:i386:i386aix.mt config:i386:i386aout.mt config:i386:i386bsd.mh \Option-d | |
463 | config:i386:i386bsd.mt config:i386:i386lynx.mh \Option-d | |
464 | config:i386:i386lynx.mt config:i386:i386m3.mh config:i386:i386m3.mt \Option-d | |
465 | config:i386:i386mach.mh config:i386:i386mk.mh config:i386:i386mk.mt \Option-d | |
466 | config:i386:i386nw.mt config:i386:i386sco.mh \Option-d | |
467 | config:i386:i386sco4.mh \Option-d | |
468 | config:i386:i386sol2.mh config:i386:i386sol2.mt config:i386:i386v.mh \Option-d | |
469 | config:i386:i386v.mt config:i386:i386v32.mh config:i386:i386v4.mh \Option-d | |
470 | config:i386:i386v4.mt config:i386:linux.mh config:i386:linux.mt \Option-d | |
471 | config:i386:ncr3000.mh config:i386:ncr3000.mt config:i386:ptx.mh \Option-d | |
472 | config:i386:sun386.mh \Option-d | |
473 | config:i386:sun386.mt config:i386:symmetry.mh config:i386:symmetry.mt \Option-d | |
474 | config:i960:nindy960.mt config:i960:vxworks960.mt config:m68k:3b1.mh \Option-d | |
475 | config:m68k:3b1.mt config:m68k:altos.mh config:m68k:altos.mt \Option-d | |
476 | config:m68k:amix.mh config:m68k:amix.mt config:m68k:apollo68b.mh \Option-d | |
477 | config:m68k:apollo68b.mt \Option-d | |
478 | config:m68k:apollo68v.mh config:m68k:delta68.mh \Option-d | |
479 | config:m68k:delta68.mt config:m68k:dpx2.mh config:m68k:dpx2.mt \Option-d | |
480 | config:m68k:es1800.mt config:m68k:hp300bsd.mh \Option-d | |
481 | config:m68k:hp300bsd.mt config:m68k:hp300hpux.mh \Option-d | |
482 | config:m68k:hp300hpux.mt config:m68k:isi.mh config:m68k:isi.mt \Option-d | |
483 | config:m68k:m68klynx.mh config:m68k:m68klynx.mt \Option-d | |
484 | config:m68k:monitor.mt \Option-d | |
485 | config:m68k:news.mh config:m68k:news.mt config:m68k:news1000.mh \Option-d | |
486 | config:m68k:os68k.mt config:m68k:st2000.mt config:m68k:sun2os3.mh \Option-d | |
487 | config:m68k:sun2os3.mt config:m68k:sun2os4.mh config:m68k:sun2os4.mt \Option-d | |
488 | config:m68k:sun3os3.mh config:m68k:sun3os3.mt config:m68k:sun3os4.mh \Option-d | |
489 | config:m68k:sun3os4.mt config:m68k:vxworks68.mt config:m88k:delta88.mh \Option-d | |
490 | config:m88k:delta88.mt config:m88k:delta88v4.mh \Option-d | |
491 | config:m88k:delta88v4.mt config:m88k:m88k.mh config:m88k:m88k.mt \Option-d | |
492 | config:mips:bigmips.mt config:mips:decstation.mh \Option-d | |
493 | config:mips:decstation.mt config:mips:idt.mt config:mips:idtl.mt \Option-d | |
494 | config:mips:irix3.mh config:mips:irix3.mt config:mips:irix4.mh \Option-d | |
495 | config:mips:irix5.mh config:mips:irix5.mt \Option-d | |
496 | config:mips:littlemips.mh config:mips:littlemips.mt \Option-d | |
497 | config:mips:mipsm3.mh config:mips:mipsm3.mt \Option-d | |
498 | config:mips:news-mips.mh config:mips:riscos.mh \Option-d | |
499 | config:none:none.mh config:none:none.mt config:ns32k:merlin.mh \Option-d | |
500 | config:ns32k:merlin.mt config:ns32k:ns32km3.mh config:ns32k:ns32km3.mt \Option-d | |
501 | config:ns32k:umax.mh config:ns32k:umax.mt \Option-d | |
502 | config:pa:hppabsd.mh config:pa:hppabsd.mt config:pa:hppahpux.mh \Option-d | |
503 | config:pa:hppahpux.mt config:pyr:pyramid.mh config:pyr:pyramid.mt \Option-d | |
504 | config:romp:rtbsd.mh config:rs6000:rs6000.mh config:rs6000:rs6000.mt \Option-d | |
505 | config:sh:sh.mt config:sparc:sparc-em.mt config:sparc:sparclite.mt \Option-d | |
506 | config:sparc:sparclynx.mh config:sparc:sparclynx.mt \Option-d | |
507 | config:sparc:sun4os4.mh config:sparc:sun4os4.mt \Option-d | |
508 | config:sparc:sun4sol2.mh config:sparc:sun4sol2.mt \Option-d | |
509 | config:sparc:vxsparc.mt config:tahoe:tahoe.mh config:tahoe:tahoe.mt \Option-d | |
510 | config:vax:vax.mt config:vax:vaxbsd.mh config:vax:vaxult.mh \Option-d | |
511 | config:vax:vaxult2.mh config:z8k:z8ksim.mt | |
512 | ||
513 | # All source files that go into linking GDB. | |
514 | # Links made at configuration time should not be specified here, since | |
515 | # SFILES is used in building the distribution archive. | |
516 | ||
517 | SFILES = "{s}"blockframe.c "{s}"breakpoint.c "{s}"buildsym.c "{s}"c-exp.y "{s}"c-lang.c \Option-d | |
518 | "{s}"c-typeprint.c "{s}"c-valprint.c "{s}"ch-exp.y "{s}"ch-lang.c "{s}"ch-typeprint.c \Option-d | |
519 | "{s}"ch-valprint.c "{s}"coffread.c "{s}"command.c "{s}"complaints.c "{s}"core.c "{s}"cp-valprint.c \Option-d | |
520 | "{s}"dbxread.c "{s}"demangle.c "{s}"dwarfread.c "{s}"elfread.c "{s}"environ.c "{s}"eval.c "{s}"expprint.c \Option-d | |
521 | "{s}"findvar.c "{s}"gdbtypes.c "{s}"infcmd.c "{s}"inflow.c "{s}"infrun.c "{s}"language.c \Option-d | |
522 | "{s}"m2-exp.y "{s}"m2-lang.c "{s}"m2-typeprint.c "{s}"m2-valprint.c "{s}"main.c "{s}"maint.c \Option-d | |
523 | "{s}"mem-break.c "{s}"minsyms.c "{s}"mipsread.c "{s}"nlmread.c "{s}"objfiles.c "{s}"parse.c \Option-d | |
524 | "{s}"printcmd.c "{s}"remote.c "{s}"source.c "{s}"stabsread.c "{s}"stack.c "{s}"symfile.c "{s}"symmisc.c \Option-d | |
525 | "{s}"symtab.c "{s}"target.c "{s}"thread.c "{s}"typeprint.c "{s}"utils.c "{s}"valarith.c "{s}"valops.c \Option-d | |
526 | "{s}"valprint.c "{s}"values.c "{s}"serial.c "{s}"ser-unix.c "{s}"mdebugread.c | |
527 | ||
528 | # Files that are not source code, but need to go into | |
529 | # gdb-{VERSION}.tar.Z. | |
530 | ||
531 | NONSRC = "{s}"Makefile.in configure.in ChangeLog ChangeLog-9091 \Option-d | |
532 | ChangeLog-92 ChangeLog-93 ChangeLog-3.x \Option-d | |
533 | gdb.1 refcard.ps README TODO TAGS NEWS \Option-d | |
534 | Projects .gdbinit COPYING {YYFILES} "{s}"copying.c copying.awk \Option-d | |
535 | saber.suppress "{s}"standalone.c "{s}"stuff.c "{s}"kdb-start.c gcc.patch \Option-d | |
536 | nindy-share:Makefile nindy-share:VERSION nindy-share:README \Option-d | |
537 | vx-share:README 29k-share:README config:convex:Convex.notes \Option-d | |
538 | "{s}"i386-nlmstub.c | |
539 | ||
540 | # All source files that lint should look at | |
541 | LINTFILES = {SFILES} {YYFILES} "{s}"init.c | |
542 | ||
543 | # Any additional files specified on these lines should also be added to | |
544 | # the NONSRC definition, so they go in the tar files. | |
545 | SFILES_STAND = {SFILES} "{s}"standalone.c | |
546 | SFILES_KGDB = {SFILES} "{s}"stuff.c "{s}"kdb-start.c | |
547 | ||
548 | # "system" headers. Using these in dependencies is a rather personal | |
549 | # choice. By default, we do not depend on these files. | |
550 | getopt_h = "{INCLUDE_DIR}":getopt.h | |
551 | #ieee-float_h = "{INCLUDE_DIR}":ieee-float.h | |
552 | ieee_float_h = | |
553 | bfd_h = "{BFD_DIR}":bfd.h | |
554 | wait_h = "{INCLUDE_DIR}":wait.h | |
555 | dis_asm_h = "{INCLUDE_DIR}":dis-asm.h | |
556 | ||
557 | dcache_h = "{s}"dcache.h | |
558 | remote_utils_h = {dcache_h} "{s}"serial.h "{s}"target.h "{s}"remote-utils.h "{s}"remote-sim.h | |
559 | ||
560 | readline_headers = | |
561 | ||
562 | udiheaders = \Option-d | |
563 | "{srcdir}"29k-share:udi:udiproc.h \Option-d | |
564 | "{srcdir}"29k-share:udi:udiphcfg.h \Option-d | |
565 | "{srcdir}"29k-share:udi:udiphunix.h \Option-d | |
566 | "{srcdir}"29k-share:udi:udiptcfg.h \Option-d | |
567 | "{srcdir}"29k-share:udi:udipt29k.h \Option-d | |
568 | "{srcdir}"29k-share:udi:udisoc.h | |
569 | ||
570 | dcache_h = "{s}"dcache.h | |
571 | ||
572 | gdbcore_h = "{s}"gdbcore.h {bfd_h} | |
573 | ||
574 | frame_h = "{s}"frame.h | |
575 | symtab_h = "{s}"symtab.h | |
576 | gdbtypes_h = "{s}"gdbtypes.h | |
577 | expression_h = "{s}"expression.h | |
578 | value_h = "{s}"value.h {symtab_h} {gdbtypes_h} {expression_h} | |
579 | ||
580 | breakpoint_h = "{s}"breakpoint.h {frame_h} {value_h} | |
581 | ||
582 | command_h = "{s}"command.h | |
583 | gdbcmd_h = "{s}"gdbcmd.h {command_h} | |
584 | ||
585 | defs_h = "{s}"defs.h xm.h tm.h nm.h config.status | |
586 | ||
587 | inferior_h = "{s}"inferior.h {breakpoint_h} | |
588 | ||
589 | # Header files that need to have srcdir added. Note that in the cases | |
590 | # where we use a macro like {gdbcmd_h}, things are carefully arranged | |
591 | # so that each "{s}".h file is listed exactly once (M-x tags-search works | |
592 | # wrong if TAGS has files twice). Because this is tricky to get | |
593 | # right, it is probably easiest just to list "{s}".h files here directly. | |
594 | ||
595 | HFILES_NO_SRCDIR = "{s}"buildsym.h "{s}"call-cmds.h "{s}"coff-solib.h "{s}"defs.h "{s}"dst.h "{s}"environ.h \Option-d | |
596 | {gdbcmd_h} \Option-d | |
597 | {gdbcore_h} "{s}"gdb-stabs.h {inferior_h} "{s}"language.h "{s}"minimon.h "{s}"monitor.h \Option-d | |
598 | "{s}"objfiles.h "{s}"parser-defs.h "{s}"partial-stab.h "{s}"serial.h "{s}"signals.h "{s}"solib.h \Option-d | |
599 | "{s}"symfile.h "{s}"stabsread.h "{s}"target.h "{s}"terminal.h "{s}"typeprint.h "{s}"xcoffsolib.h \Option-d | |
600 | "{s}"c-lang.h "{s}"ch-lang.h "{s}"m2-lang.h "{s}"complaints.h "{s}"ns32k-opcode.h "{s}"valprint.h \Option-d | |
601 | "{s}"config:m68k:tm-m68k.h "{s}"config:pa:tm-hppa.h "{s}"config:i960:tm-i960.h \Option-d | |
602 | "{s}"config:sparc:tm-sparc.h "{s}"config:tm-lynx.h "{s}"config:tm-sunos.h \Option-d | |
603 | "{s}"config:tm-sysv4.h \Option-d | |
604 | "{s}"config:m68k:xm-m68k.h "{s}"config:sparc:xm-sparc.h \Option-d | |
605 | "{s}"config:xm-lynx.h "{s}"config:xm-sysv4.h \Option-d | |
606 | "{s}"config:vax:xm-vax.h "{s}"config:nm-m3.h "{s}"config:nm-trash.h \Option-d | |
607 | "{s}"29k-share:udi:udiids.h 29k-share:udi_soc "{o}"nindy-share:b.c.out.h \Option-d | |
608 | "{s}"nindy-share:block_io.h "{s}"nindy-share:coff.h \Option-d | |
609 | "{s}"nindy-share:env.h "{s}"nindy-share:stop.h \Option-d | |
610 | "{s}"vx-share:dbgRpcLib.h "{s}"vx-share:ptrace.h "{s}"vx-share:vxTypes.h \Option-d | |
611 | "{s}"vx-share:vxWorks.h "{s}"vx-share:wait.h "{s}"vx-share:xdr_ld.h \Option-d | |
612 | "{s}"vx-share:xdr_ptrace.h "{s}"vx-share:xdr_rdb.h "{s}"thread.h \Option-d | |
613 | "{s}"dcache.h "{s}"remote-utils.h "{s}"remote-sim.h | |
614 | ||
615 | # Header files that already have srcdir in them. | |
616 | ||
617 | HFILES_WITH_SRCDIR = {udiheaders} | |
618 | ||
619 | ||
620 | # GDB "info" files, which should be included in their entirety | |
621 | INFOFILES = gdb.info\Option-x | |
622 | ||
623 | REMOTE_EXAMPLES = "{s}"m68k-stub.c "{s}"i386-stub.c "{s}"sparc-stub.c rem-multi.shar | |
624 | ||
625 | POSSLIBS = "{s}"regex.c "{s}"regex.h | |
626 | ||
627 | # Subdirectories of gdb, which should be included in their entirety in | |
628 | # gdb-xxx.tar.Z \Option-f | |
629 | TARDIRS = doc gdbserver sparclite | |
630 | ||
631 | # {X,T,NAT}DEPFILES are something of a pain in that it's hard to | |
632 | # default their values the way we do for SER_HARDWIRE; in the future | |
633 | # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other | |
634 | # variables analogous to SER_HARDWIRE which get defaulted in this | |
635 | # Makefile.in | |
636 | ||
637 | DEPFILES = {TDEPFILES} {XDEPFILES} {SER_HARDWIRE} {NATDEPFILES} {REMOTE_O} | |
638 | ||
639 | SOURCES = {SFILES} {ALLDEPFILES} {YYFILES} | |
640 | # Don't include YYFILES (\Option-x.tab.c) because we already include \Option-x.y in SFILES, | |
641 | # and it's more useful to see it in the "{s}".y file. | |
642 | TAGFILES_NO_SRCDIR = {SFILES} {HFILES_NO_SRCDIR} {ALLDEPFILES} \Option-d | |
643 | {ALLPARAM} {POSSLIBS} | |
644 | TAGFILES_WITH_SRCDIR = {HFILES_WITH_SRCDIR} | |
645 | ||
646 | TARFILES = {SFILES} {HFILES_NO_SRCDIR} {HFILES_WITH_SRCDIR} \Option-d | |
647 | {NONSRC} {ALLDEPFILES} {ALLCONFIG} \Option-d | |
648 | {ALLPARAM} {INFOFILES} {POSSLIBS} {REMOTE_EXAMPLES} | |
649 | ||
650 | ||
939baabe | 651 | OBS = "{o}"version.c.o "{o}"main.c.o "{o}"blockframe.c.o "{o}"breakpoint.gc.o "{o}"findvar.c.o "{o}"stack.c.o "{o}"thread.c.o \Option-d |
8dc3e3d7 SS |
652 | "{o}"source.gc.o "{o}"values.c.o "{o}"eval.c.o "{o}"valops.c.o "{o}"valarith.c.o "{o}"valprint.c.o "{o}"printcmd.gc.o \Option-d |
653 | "{o}"symtab.c.o "{o}"symfile.c.o "{o}"symmisc.c.o "{o}"infcmd.c.o "{o}"infrun.gc.o "{o}"command.c.o \Option-d | |
654 | "{o}"utils.c.o "{o}"expprint.c.o "{o}"environ.c.o "{o}"gdbtypes.c.o "{o}"copying.c.o {DEPFILES} \Option-d | |
655 | "{o}"mem-break.c.o "{o}"target.c.o "{o}"parse.c.o "{o}"language.c.o {YYOBJ} "{o}"buildsym.c.o \Option-d | |
656 | "{o}"objfiles.c.o "{o}"minsyms.c.o "{o}"maint.c.o "{o}"demangle.c.o "{o}"dbxread.c.o "{o}"coffread.c.o "{o}"elfread.c.o \Option-d | |
657 | "{o}"dwarfread.c.o "{o}"mipsread.c.o "{o}"stabsread.c.o "{o}"core.c.o "{o}"c-lang.c.o "{o}"ch-lang.c.o "{o}"m2-lang.c.o \Option-d | |
658 | "{o}"complaints.c.o "{o}"typeprint.c.o "{o}"c-typeprint.c.o "{o}"ch-typeprint.c.o "{o}"m2-typeprint.c.o \Option-d | |
659 | "{o}"c-valprint.c.o "{o}"cp-valprint.c.o "{o}"ch-valprint.c.o "{o}"m2-valprint.c.o "{o}"nlmread.c.o \Option-d | |
660 | "{o}"serial.c.o "{o}"mdebugread.c.o | |
661 | ||
662 | TSOBS = "{o}"inflow.c.o | |
663 | ||
664 | NTSOBS = "{o}"standalone.c.o | |
665 | ||
666 | TSSTART = "{o}":lib:crt0.c.o | |
667 | ||
668 | NTSSTART = "{o}"kdb-start.c.o | |
669 | ||
670 | SUBDIRS = doc testsuite | |
671 | ||
672 | # For now, shortcut the "configure GDB for fewer languages" stuff. | |
673 | YYFILES = c-exp.tab.c m2-exp.tab.c ch-exp.tab.c | |
674 | YYOBJ = c-exp.tab.c.o m2-exp.tab.c.o ch-exp.tab.c.o | |
675 | ||
676 | # Prevent Sun make from putting in the machine type. Setting | |
677 | # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1. | |
678 | # .c.o \Option-f | |
679 | # {CC} -c {INTERNAL_CFLAGS} $< | |
680 | ||
681 | all \Option-f gdb | |
682 | # @{MAKE} {FLAGS_TO_PASS} DO=all "DODIRS=`echo {SUBDIRS} | sed 's:testsuite::'`" subdir_do | |
683 | ||
684 | # The check target can not use subdir_do, because subdir_do does not | |
685 | # use TARGET_FLAGS_TO_PASS. | |
686 | check \Option-f force | |
687 | @if [ -f testsuite:Makefile ]; then \Option-d | |
688 | rootme=`pwd`; export rootme; \Option-d | |
689 | cd testsuite; \Option-d | |
690 | {MAKE} {TARGET_FLAGS_TO_PASS} check; \Option-d | |
691 | else true; fi | |
692 | ||
693 | info dvi install-info clean-info \Option-f force | |
694 | @{MAKE} {FLAGS_TO_PASS} DO=$@ "DODIRS={SUBDIRS}" subdir_do | |
695 | ||
696 | gdb.z \Option-f gdb.1 | |
697 | nroff -man "{srcdir}"gdb.1 | col -b > gdb.t | |
698 | pack gdb.t ; rm -f gdb.t | |
699 | Rename -y gdb.t.z gdb.z | |
700 | ||
701 | # Traditionally "install" depends on "all". But it may be useful | |
702 | # not to; for example, if the user has made some trivial change to a | |
703 | # source file and doesn't care about rebuilding or just wants to save the | |
704 | # time it takes for make to check that all is up to date. | |
705 | # install-only is intended to address that need. | |
706 | install \Option-f all install-only | |
707 | install-only \Option-f | |
708 | Duplicate -i -y gdb "{bindir}"gdb | |
709 | ||
710 | uninstall \Option-f force | |
711 | Delete -i -y {bindir}:gdb {man1dir}:gdb.1 | |
712 | @{MAKE} DO=uninstall "DODIRS={SUBDIRS}" {FLAGS_TO_PASS} subdir_do | |
713 | ||
714 | # We do this by grepping through sources. If that turns out to be too slow, | |
715 | # maybe we could just require every "{o}".c.o file to have an initialization routine | |
716 | # of a given name (remote-udi.o -> _initialize_remote_udi, etc.). | |
717 | # | |
718 | # Formatting conventions \Option-f The name of the _initialize_\Option-x routines must start | |
719 | # in column zero, and must not be inside #if. | |
720 | :init.c \Option-f {OBS} {TSOBS} | |
721 | Duplicate -d -y "{s}"mpw-init.c :init.c | |
722 | ||
723 | # .PRECIOUS \Option-f "{s}"init.c | |
724 | ||
725 | LOADLIBES = {EXTRALIBS} | |
726 | ||
727 | # Removing the old gdb first works better if it is running, at least on SunOS. | |
728 | gdb \Option-f {OBS} {TSOBS} {ADD_DEPS} {CDEPS} "{o}"init.c.o | |
729 | Delete -i -y gdb | |
730 | Link {LDFLAGS} -o gdb \Option-d | |
731 | "{o}"init.c.o {OBS} {TSOBS} {ADD_FILES} {CLIBS} {LOADLIBES} | |
732 | ||
733 | saber_gdb \Option-f {SFILES} {DEPFILES} "{s}"copying.c "{s}"version.c | |
734 | #setopt load_flags {CFLAGS} {BFD_CFLAGS} -d HOST_SYS=SUN4_SYS | |
735 | #load :init.c {SFILES} | |
736 | #unload "{srcdir}"c-exp.y "{srcdir}"m2-exp.y "{srcdir}"ch-exp.y | |
737 | #unload vx-share:\Option-x.h | |
738 | #unload nindy-share:[A-Z]\Option-x | |
739 | #load c-exp.tab.c m2-exp.tab.c ch-exp.tab.c | |
740 | #load "{s}"copying.c "{s}"version.c | |
741 | #load ::opcodes:libopcodes.o | |
742 | #load ::libiberty:libiberty.o | |
743 | #load ::bfd:libbfd.o | |
744 | #load ::readline:libreadline.o | |
745 | #load ::mmalloc:libmmalloc.o | |
746 | #load -ltermcap | |
747 | #load `echo " "{DEPFILES} | sed -e 's:\.o:.c:g' -e 's, , ::,g'` | |
748 | echo "Load "{s}".c corresponding to \Option-f " {DEPFILES} | |
749 | ||
939baabe SS |
750 | MacGDB \Option-f {OBS} {TSOBS} {ADD_DEPS} {CDEPS} "{o}"init.c.o |
751 | Delete -i -y MacGDB | |
752 | Rez -rd -o MacGDB "{s}"macgdb.r -append | |
753 | Link -d -model far -o MacGDB -t 'APPL' -c 'gdb ' \Option-d | |
754 | "{o}"init.c.o {OBS} {TSOBS} {ADD_FILES} {CLIBS} {LOADLIBES} | |
8dc3e3d7 SS |
755 | |
756 | # This is useful when debugging GDB, because some Unix's don't let you run GDB | |
757 | # on itself without copying the executable. So "make gdb1" will make | |
758 | # gdb and put a copy in gdb1, and you can run it with "gdb gdb1". | |
759 | # Removing gdb1 before the copy is the right thing if gdb1 is open | |
760 | # in another process. | |
761 | gdb1 \Option-f gdb | |
762 | Delete -y gdb1 | |
763 | Duplicate -d -y gdb gdb1 | |
764 | ||
765 | config.status \Option-f | |
766 | @echo "You must configure gdb. Look at the README file for details." | |
767 | @false | |
768 | ||
769 | ### fixme - this can't be right. | |
770 | # This checks the configure.in file versus the config: directory. | |
771 | config-check \Option-f config-check-hosts config-check-targets | |
772 | config-check-hosts \Option-f | |
773 | grep gdb_host= "{srcdir}"configure.in | \Option-d | |
774 | sed -e 's:.\Option-xgdb_host=::' -e 's: ;;$$:.mh:' | sort -u >HOSTconf.o | |
775 | (cd "{srcdir}"config; ls \Option-x.mh) >HOSTdir.o | |
776 | diff -u "{o}"HOSTconf.c.o "{o}"HOSTdir.c.o | |
777 | ||
778 | ### fixme - nor can this. | |
779 | config-check-targets \Option-f | |
780 | grep gdb_target= "{srcdir}"configure.in | \Option-d | |
781 | sed -e 's:.\Option-xgdb_target=::' -e 's: ;;$$:.mh:' | sort -u >TARGconf.o | |
782 | (cd "{srcdir}"config; ls \Option-x.mt) >TARGdir.o | |
783 | diff -u "{o}"HOSTconf.c.o "{o}"HOSTdir.c.o | |
784 | ||
785 | # FIXME. These are not generated by "make depend" because they only are there | |
786 | # for some machines. | |
787 | # But these rules don't do what we want; we want to hack the "{o}"foo.c.o \Option-f "{s}"tm.h | |
788 | # dependency to do the right thing. | |
789 | tm-isi.h "{s}"tm-sun3.h "{s}"tm-news.h "{s}"tm-hp300bsd.h "{s}"tm-altos.h \Option-f "{s}"tm-m68k.h | |
790 | tm-hp300hpux.h "{s}"tm-sun2.h "{s}"tm-3b1.h \Option-f "{s}"tm-m68k.h | |
791 | xm-news1000.h \Option-f "{s}"xm-news.h | |
792 | xm-i386-sv32.h \Option-f "{s}"xm-i386.h | |
793 | tm-i386gas.h \Option-f "{s}"tm-i386.h | |
794 | xm-sun4os4.h \Option-f "{s}"xm-sparc.h | |
795 | tm-sun4os4.h \Option-f "{s}"tm-sparc.h | |
796 | xm-vaxult.h \Option-f "{s}"xm-vax.h | |
797 | xm-vaxbsd.h \Option-f "{s}"xm-vax.h | |
798 | ||
799 | kdb \Option-f {NTSSTART} {OBS} {NTSOBS} {ADD_DEPS} {CDEPS} | |
800 | Delete -y "{s}"init.c | |
801 | "{srcdir}"munch {MUNCH_DEFINE} {OBS} {NTSOBS} > "{s}"init.c | |
802 | {CC} {INTERNAL_LDFLAGS} "{s}"init.c -o "{o}"init.c.o {CLIBS} | |
803 | ld -o kdb {NTSSTART} {OBS} {NTSOBS} "{o}"init.c.o {ADD_FILES} \Option-d | |
804 | lc {CLIBS} | |
805 | ||
806 | # Put the proper machine-specific files first, so M-. on a machine | |
807 | # specific routine gets the one for the correct machine. (FIXME \Option-f those | |
808 | # files go in twice; we should be removing them from the main list). | |
809 | ||
810 | # TAGS depends on all the files that go into it so you can rebuild TAGS | |
811 | # with `make TAGS' and not have to say `rm TAGS' first. | |
812 | ||
813 | TAGS \Option-f {TAGFILES_NO_SRCDIR} {TAGFILES_WITH_SRCDIR} | |
814 | @echo Making TAGS | |
815 | @etags `find "{srcdir}"config \( -name {TM_FILE} \Option-d | |
816 | o -name {XM_FILE} \Option-d | |
817 | o -name {NAT_FILE} \) -print` \Option-d | |
818 | `(for i in {DEPFILES} {TAGFILES_NO_SRCDIR}; do \Option-d | |
819 | echo "{srcdir}"$$i ; \Option-d | |
820 | done ; for i in {TAGFILES_WITH_SRCDIR}; do \Option-d | |
821 | echo $$i ; \Option-d | |
822 | done) | sed -e 's:\.o$$:\.c:'` | |
823 | ||
824 | # Making distributions of GDB and friends. | |
825 | ||
826 | # Make a tar file containing the GDB directory of the distribution. | |
827 | gdb.tar.Z \Option-f force_update | |
828 | {MAKE} {MFLAGS} -f "{s}"Makefile.in setup-to-dist | |
829 | {MAKE} {MFLAGS} -f "{s}"Makefile.in gdb-{VERSION}.tar.Z | |
830 | ||
831 | # Make a directory `proto-gdb.dir' that contains an image of the GDB | |
832 | # directory of the distribution, built up with symlinks. Note that this | |
833 | # make target is not directly referenced by any other rules in this makefile, | |
834 | # it is referenced by the makefile in the parent directory. | |
835 | make-proto-gdb.dir \Option-f force_update | |
836 | {MAKE} {MFLAGS} -f "{s}"Makefile.in setup-to-dist | |
837 | {MAKE} {MFLAGS} -f Makefile make-proto-gdb-1 | |
838 | ||
839 | # Set up the GDB source directory for distribution, by building all files that | |
840 | # are products of other files. | |
841 | setup-to-dist \Option-f force_update | |
842 | ::configure none | |
843 | (cd doc; {MAKE} {MFLAGS} GDBvn.texi) | |
844 | {MAKE} {MFLAGS} gdb.info | |
845 | {MAKE} {MFLAGS} refcard.ps | |
846 | ||
847 | # Build a tar file from a proto-gdb.dir. | |
848 | gdb-{VERSION}.tar.Z \Option-f force_update | |
849 | Delete -y gdb.tar gdb-{VERSION}.tar.Z | |
850 | {MAKE} {MFLAGS} -f Makefile make-proto-gdb-1 | |
851 | # ln -s proto-gdb.dir {DIST} | |
852 | tar chf - {DIST} | compress >gdb-{VERSION}.tar.Z | |
853 | Delete -y -rf {DIST} proto-gdb.dir | |
854 | ||
855 | # Build a proto-gdb.dir after GDB has been set up for distribution. | |
856 | # This stuff must be run in `Makefile', not `"{s}"Makefile.in`; we use the makefile | |
857 | # built in the setup-to-dist process, since it defines things like ALLCONFIG | |
858 | # and ALLDEPFILES, that we need. | |
859 | make-proto-gdb-1 \Option-f {TARFILES} {TARDIRS} gdb.info | |
860 | Delete -y -rf proto-gdb.dir | |
861 | mkdir proto-gdb.dir | |
862 | rootme=`pwd`: ; export rootme ; \Option-d | |
863 | for i in `echo {TARDIRS}`; do \Option-d | |
864 | (cd proto-gdb.dir ; \Option-d | |
865 | mkdir -p $$i; \Option-d | |
866 | cd $$i; \Option-d | |
867 | # ln -s ${rootme}:$$i:\Option-x .; \Option-d | |
868 | Delete -y -rf SCCS CVS CVS.adm RCS config.status; \Option-d | |
869 | if test -f "{s}"Makefile.in; then rm -f Makefile; else true; fi;); \Option-d | |
870 | done ; \Option-d | |
871 | for i in `echo {TARFILES}`; do \Option-d | |
872 | (cd proto-gdb.dir ; \Option-d | |
873 | dir=`dirname $$i`; \Option-d | |
874 | if test -d $$dir; then true; else mkdir -p $$dir; fi; \Option-d | |
875 | # ln -s ${rootme}:$$i $$i;); \Option-d | |
876 | done | |
877 | chmod og=u `find . -print` | |
878 | ||
879 | # Build a proto-testsuite.dir. | |
880 | make-proto-testsuite.dir \Option-f force_update | |
881 | Delete -y -rf proto-testsuite.dir | |
882 | mkdir proto-testsuite.dir | |
883 | rootme=`pwd`: ; export rootme ; \Option-d | |
884 | for i in `find testsuite -type f -print`; do \Option-d | |
885 | (cd proto-testsuite.dir ; \Option-d | |
886 | dir=`dirname $$i`; \Option-d | |
887 | if test -d $$dir; then true; else mkdir -p $$dir; fi; \Option-d | |
888 | # ln -s ${rootme}:$$i $$i;); \Option-d | |
889 | done | |
890 | find proto-testsuite.dir -name Makefile -exec rm {} \; | |
891 | find proto-testsuite.dir -name config.status -exec rm {} \; | |
892 | ||
893 | clean mostlyclean \Option-f | |
894 | @{MAKE} {FLAGS_TO_PASS} DO=clean "DODIRS={SUBDIRS}" subdir_do | |
895 | Delete -y \Option-x.o {ADD_FILES} \Option-x~ "{s}"init.c-tmp | |
896 | Delete -y "{s}"init.c "{s}"version.c | |
897 | Delete -y gdb core "{s}"make.log | |
898 | Delete -y gdb[0-9] | |
899 | ||
900 | # This used to depend on c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS | |
901 | # I believe this is wrong; the makefile standards for distclean just | |
902 | # describe removing files; the only sort of "re-create a distribution" | |
903 | # functionality described is if the distributed files are unmodified. | |
904 | distclean \Option-f clean | |
905 | @{MAKE} {FLAGS_TO_PASS} DO=distclean "DODIRS={SUBDIRS}" subdir_do | |
906 | Delete -y "{s}"nm.h "{s}"tm.h "{s}"xm.h config.status | |
907 | Delete -y "{o}"y.c.output yacc.acts yacc.tmp y.tab.h | |
908 | Delete -y Makefile | |
909 | ||
910 | realclean \Option-f clean | |
911 | @{MAKE} {FLAGS_TO_PASS} DO=realclean "DODIRS={SUBDIRS}" subdir_do | |
912 | Delete -y c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS {INFOFILES} | |
913 | Delete -y "{s}"nm.h "{s}"tm.h "{s}"xm.h config.status | |
914 | Delete -y "{o}"y.c.output yacc.acts yacc.tmp | |
915 | Delete -y Makefile | |
916 | ||
917 | subdir_do \Option-f force | |
918 | @for i in {DODIRS}; do \Option-d | |
919 | if [ -f :$$i:Makefile ] ; then \Option-d | |
920 | if (cd :$$i; \Option-d | |
921 | {MAKE} {FLAGS_TO_PASS} {DO}) ; then true ; \Option-d | |
922 | else exit 1 ; fi ; \Option-d | |
923 | else true ; fi ; \Option-d | |
924 | done | |
925 | ||
926 | #Makefile \Option-f "{s}"Makefile.in {host_makefile_frag} {target_makefile_frag} | |
927 | # {SHELL} config.status | |
928 | ||
929 | # Documentation! | |
930 | # GDB QUICK REFERENCE (TeX dvi file, CM fonts) | |
931 | refcard.dvi \Option-f | |
932 | ( cd doc; {MAKE} refcard.dvi {FLAGS_TO_PASS} ) | |
933 | Rename -y doc:refcard.dvi . | |
934 | ||
935 | # GDB QUICK REFERENCE (PostScript output, common PS fonts) | |
936 | refcard.ps \Option-f | |
937 | ( cd doc; {MAKE} refcard.ps {FLAGS_TO_PASS} ) | |
938 | Rename -y doc:refcard.ps . | |
939 | ||
940 | # Make "{s}"copying.c from COPYING | |
941 | copying.c \Option-f COPYING copying.awk | |
942 | awk -f "{srcdir}"copying.awk < "{srcdir}"COPYING > "{s}"copying.c | |
943 | ||
944 | "{o}"version.c \Option-f Makefile | |
945 | echo 'char *version = "{VERSION}";' >"{o}"version.c | |
946 | echo 'char *host_name = "{host_alias}";' >> "{o}"version.c | |
947 | echo 'char *target_name = "{target_alias}";' >> "{o}"version.c | |
948 | ||
949 | # c-exp.tab.c is generated in objdir from "{s}"c-exp.y if it doesn't exist | |
950 | # in srcdir, then compiled in objdir to c-exp.tab.c.o. | |
951 | ||
952 | # If we said c-exp.tab.c rather than :c-exp.tab.c some makes | |
953 | # would sometimes re-write it into "{srcdir}"c-exp.tab.c. | |
954 | ||
955 | # Remove bogus decls for malloc:realloc:free which conflict with everything | |
956 | # else. | |
957 | c-exp.tab.c.o \Option-f c-exp.tab.c | |
958 | c-exp.tab.c \Option-f "{s}"c-exp.y "{s}"Makefile.in | |
959 | {YACC} {YFLAGS} "{srcdir}"c-exp.y | |
960 | sed -e ':extern.*malloc:d' \Option-d | |
961 | -e ':extern.*realloc:d' \Option-d | |
962 | -e ':extern.*free:d' \Option-d | |
963 | -e ':include.*malloc.h:d' \Option-d | |
964 | -e 's:malloc:xmalloc:g' \Option-d | |
965 | -e 's:realloc:xrealloc:g' \Option-d | |
966 | < y.tab.c > c-exp.new | |
967 | Delete -y y.tab.c | |
968 | Rename -y c-exp.new :c-exp.tab.c | |
969 | ||
970 | # ch-exp.tab.c is generated in objdir from "{s}"ch-exp.y if it doesn't exist | |
971 | # in srcdir, then compiled in objdir to ch-exp.tab.c.o. | |
972 | # Remove bogus decls for malloc:realloc:free which conflict with everything | |
973 | # else. | |
974 | ch-exp.tab.c.o \Option-f ch-exp.tab.c | |
975 | # the dependency here on c-exp.tab.c is artificial. Without this | |
976 | # dependency, a parallel make will attempt to build both at the same | |
977 | # time and the second yacc will pollute the first y.tab.c file. | |
978 | ch-exp.tab.c \Option-f "{s}"ch-exp.y "{s}"Makefile.in c-exp.tab.c | |
979 | {YACC} {YFLAGS} "{srcdir}"ch-exp.y | |
980 | sed -e ':extern.*malloc:d' \Option-d | |
981 | -e ':extern.*realloc:d' \Option-d | |
982 | -e ':extern.*free:d' \Option-d | |
983 | -e ':include.*malloc.h:d' \Option-d | |
984 | -e 's:malloc:xmalloc:g' \Option-d | |
985 | -e 's:realloc:xrealloc:g' \Option-d | |
986 | < y.tab.c > ch-exp.new | |
987 | Delete -y y.tab.c | |
988 | Rename -y ch-exp.new :ch-exp.tab.c | |
989 | ||
990 | # m2-exp.tab.c is generated in objdir from "{s}"m2-exp.y if it doesn't exist | |
991 | # in srcdir, then compiled in objdir to m2-exp.tab.c.o. | |
992 | # Remove bogus decls for malloc:realloc:free which conflict with everything | |
993 | # else. | |
994 | m2-exp.tab.c.o \Option-f m2-exp.tab.c | |
995 | # the dependency here on ch-exp.tab.c is artificial. Without this | |
996 | # dependency, a parallel make will attempt to build both at the same | |
997 | # time and the second yacc will pollute the first y.tab.c file. | |
998 | m2-exp.tab.c \Option-f "{s}"m2-exp.y "{s}"Makefile.in ch-exp.tab.c | |
999 | {YACC} {YFLAGS} "{srcdir}"m2-exp.y | |
1000 | sed -e ':extern.*malloc:d' \Option-d | |
1001 | -e ':extern.*realloc:d' \Option-d | |
1002 | -e ':extern.*free:d' \Option-d | |
1003 | -e ':include.*malloc.h:d' \Option-d | |
1004 | -e 's:malloc:xmalloc:g' \Option-d | |
1005 | -e 's:realloc:xrealloc:g' \Option-d | |
1006 | < y.tab.c > m2-exp.new | |
1007 | Delete -y y.tab.c | |
1008 | Rename -y m2-exp.new :m2-exp.tab.c | |
1009 | ||
1010 | # These files are updated atomically, so make never has to remove them | |
1011 | # .PRECIOUS \Option-f m2-exp.tab.c ch-exp.tab.c c-exp.tab.c | |
1012 | ||
1013 | lint \Option-f {LINTFILES} | |
1014 | {LINT} {INCLUDE_CFLAGS} {LINTFLAGS} {LINTFILES} \Option-d | |
1015 | `echo {DEPFILES} | sed 's:\.o :\.c :g' | |
1016 | ||
1017 | gdb.cxref \Option-f {SFILES} | |
1018 | cxref -i : {SFILES} >"{s}"gdb.cxref | |
1019 | ||
1020 | #force_update \Option-f | |
1021 | ||
1022 | # GNU Make has an annoying habit of putting \Option-xall\Option-x the Makefile variables | |
1023 | # into the environment, unless you include this target as a circumvention. | |
1024 | # Rumor is that this will be fixed (and this target can be removed) | |
1025 | # in GNU Make 4.0. | |
1026 | # .NOEXPORT \Option-f | |
1027 | ||
1028 | # GNU Make 3.63 has a different problem \Option-f it keeps tacking command line | |
1029 | # overrides onto the definition of {MAKE}. This variable setting | |
1030 | # will remove them. | |
1031 | MAKEOVERRIDES= | |
1032 | ||
1033 | ## This is ugly, but I don't want GNU make to put these variables in | |
1034 | ## the environment. Older makes will see this as a set of targets | |
1035 | ## with no dependencies and no actions. | |
1036 | #unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET \Option-f | |
1037 | ||
1038 | # These are things from config:\Option-x:\Option-x.m? fragments. There is no good reason | |
1039 | # why they are separate from the lists of files above. | |
1040 | ||
1041 | ||
1042 | ||
1043 | "{o}"udip2soc.c.o \Option-f "{srcdir}"29k-share:udi:udip2soc.c {udiheaders} | |
1044 | {CC} {INTERNAL_CFLAGS} "{srcdir}"29k-share:udi:udip2soc.c -o "{o}"soc.c.o | |
1045 | ||
1046 | "{o}"udi2go32.c.o \Option-f "{srcdir}"29k-share:udi:udi2go32.c {udiheaders} | |
1047 | {CC} {INTERNAL_CFLAGS} "{srcdir}"29k-share:udi:udi2go32.c -o "{o}".c.o | |
1048 | ||
1049 | "{o}"udr.c.o \Option-f "{srcdir}"29k-share:udi:udr.c {udiheaders} | |
1050 | {CC} {INTERNAL_CFLAGS} "{srcdir}"29k-share:udi:udr.c -o "{o}"udr.c.o | |
1051 | ||
1052 | "{o}"a29k-pinsn.c.o \Option-f "{s}"a29k-pinsn.c {bfd_h} {dis_asm_h} | |
1053 | "{o}"a29k-tdep.c.o \Option-f "{s}"a29k-tdep.c {gdbcmd_h} {gdbcore_h} {inferior_h} {defs_h} | |
1054 | "{o}"a68v-nat.c.o \Option-f "{s}"a68v-nat.c {defs_h} {gdbcore_h} {inferior_h} | |
1055 | ||
1056 | "{o}"alpha-nat.c.o \Option-f "{s}"alpha-nat.c {defs_h} {gdbcore_h} {inferior_h} "{s}"target.h | |
1057 | ||
1058 | "{o}"alpha-tdep.c.o \Option-f "{s}"alpha-tdep.c {defs_h} {gdbcmd_h} {gdbcore_h} \Option-d | |
1059 | {inferior_h} {symtab_h} {dis_asm_h} | |
1060 | ||
1061 | "{o}"altos-xdep.c.o \Option-f "{s}"altos-xdep.c {defs_h} {gdbcore_h} {inferior_h} | |
1062 | "{o}"arm-pinsn.c.o \Option-f "{s}"arm-pinsn.c "{s}"{OP_INCLUDE}:arm.h {defs_h} {symtab_h} | |
1063 | ||
1064 | "{o}"blockframe.c.o \Option-f "{s}"blockframe.c {defs_h} {gdbcore_h} {inferior_h} \Option-d | |
1065 | "{s}"objfiles.h "{s}"symfile.h "{s}"target.h | |
1066 | ||
1067 | "{o}"breakpoint.gc.o \Option-f "{s}"breakpoint.c {defs_h} {gdbcmd_h} {gdbcore_h} \Option-d | |
1068 | {inferior_h} "{s}"language.h "{s}"target.h "{s}"thread.h | |
1069 | ||
1070 | "{o}"buildsym.c.o \Option-f "{s}"buildsym.c {bfd_h} "{s}"buildsym.h "{s}"complaints.h {defs_h} \Option-d | |
1071 | "{s}"objfiles.h "{s}"symfile.h {symtab_h} | |
1072 | ||
1073 | "{o}"c-lang.c.o \Option-f "{s}"c-lang.c "{s}"c-lang.h {defs_h} {expression_h} {gdbtypes_h} \Option-d | |
1074 | "{s}"language.h "{s}"parser-defs.h {symtab_h} | |
1075 | ||
1076 | "{o}"c-typeprint.c.o \Option-f "{s}"c-typeprint.c "{s}"c-lang.h {defs_h} {expression_h} \Option-d | |
1077 | {gdbcmd_h} {gdbcore_h} {gdbtypes_h} "{s}"language.h {symtab_h} "{s}"target.h \Option-d | |
1078 | "{s}"typeprint.h {value_h} | |
1079 | ||
1080 | "{o}"c-valprint.c.o \Option-f "{s}"c-valprint.c {defs_h} {expression_h} {gdbtypes_h} \Option-d | |
1081 | "{s}"language.h {symtab_h} "{s}"valprint.h {value_h} | |
1082 | ||
1083 | "{o}"ch-lang.c.o \Option-f "{s}"ch-lang.c "{s}"ch-lang.h {defs_h} {expression_h} {gdbtypes_h} \Option-d | |
1084 | "{s}"language.h "{s}"parser-defs.h {symtab_h} | |
1085 | ||
1086 | "{o}"ch-typeprint.c.o \Option-f "{s}"ch-typeprint.c "{s}"ch-lang.h {defs_h} {expression_h} \Option-d | |
1087 | {gdbcmd_h} {gdbcore_h} {gdbtypes_h} "{s}"language.h {symtab_h} \Option-d | |
1088 | "{s}"target.h {value_h} "{s}"typeprint.h | |
1089 | ||
1090 | "{o}"ch-valprint.c.o \Option-f "{s}"ch-valprint.c {defs_h} {expression_h} {gdbtypes_h} \Option-d | |
1091 | "{s}"language.h {symtab_h} "{s}"valprint.h {value_h} "{s}"c-lang.h | |
1092 | ||
1093 | "{o}"coff-solib.c.o \Option-f "{s}"coff-solib.c {defs_h} | |
1094 | ||
1095 | "{o}"coffread.c.o \Option-f "{s}"coffread.c {bfd_h} {breakpoint_h} "{s}"buildsym.h \Option-d | |
1096 | "{s}"complaints.h {defs_h} {expression_h} {gdbtypes_h} "{s}"objfiles.h \Option-d | |
1097 | "{s}"symfile.h {symtab_h} "{s}"gdb-stabs.h "{s}"stabsread.h | |
1098 | ||
1099 | "{o}"command.c.o \Option-f "{s}"command.c {defs_h} {expression_h} {gdbcmd_h} \Option-d | |
1100 | {gdbtypes_h} {symtab_h} {value_h} | |
1101 | ||
1102 | "{o}"complaints.c.o \Option-f "{s}"complaints.c "{s}"complaints.h {defs_h} {gdbcmd_h} | |
1103 | ||
1104 | "{o}"convex-pinsn.c.o \Option-f "{s}"convex-pinsn.c "{s}"{OP_INCLUDE}:convex.h {defs_h} \Option-d | |
1105 | {symtab_h} | |
1106 | ||
1107 | "{o}"convex-tdep.c.o \Option-f "{s}"convex-tdep.c {wait_h} {defs_h} {gdbcmd_h} \Option-d | |
1108 | {gdbcore_h} {inferior_h} | |
1109 | ||
1110 | "{o}"convex-xdep.c.o \Option-f "{s}"convex-xdep.c {defs_h} {gdbcmd_h} {gdbcore_h} \Option-d | |
1111 | {inferior_h} | |
1112 | ||
1113 | "{o}"core-svr4.c.o \Option-f "{s}"core-svr4.c {command_h} {defs_h} {gdbcore_h} \Option-d | |
1114 | {inferior_h} "{s}"target.h | |
1115 | ||
1116 | "{o}"core.c.o \Option-f "{s}"core.c {dis_asm_h} {defs_h} {gdbcmd_h} {gdbcore_h} \Option-d | |
1117 | {inferior_h} "{s}"target.h "{s}"language.h | |
1118 | ||
1119 | "{o}"coredep.c.o \Option-f "{s}"coredep.c {defs_h} {gdbcore_h} {value_h} | |
1120 | ||
1121 | "{o}"corelow.c.o \Option-f "{s}"corelow.c {command_h} {defs_h} {gdbcore_h} {inferior_h} \Option-d | |
1122 | "{s}"target.h "{s}"thread.h | |
1123 | ||
1124 | "{o}"cp-valprint.c.o \Option-f "{s}"cp-valprint.c {defs_h} {expression_h} {gdbcmd_h} \Option-d | |
1125 | {gdbtypes_h} {symtab_h} {value_h} | |
1126 | ||
1127 | "{o}"dcache.c.o \Option-f "{s}"dcache.c {dcache_h} | |
1128 | ||
1129 | "{o}"dbxread.c.o \Option-f "{s}"dbxread.c {breakpoint_h} "{s}"buildsym.h {command_h} \Option-d | |
1130 | "{s}"complaints.h {defs_h} {expression_h} "{s}"gdb-stabs.h {gdbcore_h} \Option-d | |
1131 | {gdbtypes_h} "{s}"language.h "{s}"objfiles.h "{s}"partial-stab.h "{s}"stabsread.h \Option-d | |
1132 | "{s}"symfile.h {symtab_h} "{s}"target.h | |
1133 | ||
1134 | "{o}"dcache.c.o \Option-f "{s}"dcache.c {dcache_h} | |
1135 | ||
1136 | "{o}"delta68-nat.c.o \Option-f "{s}"delta68-nat.c {defs_h} | |
1137 | ||
1138 | "{o}"demangle.c.o \Option-f "{s}"demangle.c {defs_h} {gdbcmd_h} | |
1139 | ||
1140 | "{o}"dwarfread.c.o \Option-f "{s}"dwarfread.c {bfd_h} "{s}"buildsym.h "{s}"complaints.h {defs_h} \Option-d | |
1141 | {expression_h} {gdbtypes_h} "{s}"language.h "{s}"objfiles.h "{s}"symfile.h \Option-d | |
1142 | {symtab_h} | |
1143 | ||
1144 | "{o}"elfread.c.o \Option-f "{s}"elfread.c {bfd_h} "{s}"buildsym.h "{s}"complaints.h {defs_h} \Option-d | |
1145 | "{s}"gdb-stabs.h "{s}"objfiles.h "{s}"symfile.h {symtab_h} | |
1146 | ||
1147 | "{o}"environ.c.o \Option-f "{s}"environ.c {defs_h} "{s}"environ.h {gdbcore_h} | |
1148 | ||
1149 | "{o}"eval.c.o \Option-f "{s}"eval.c {bfd_h} {defs_h} {expression_h} {frame_h} \Option-d | |
1150 | {gdbtypes_h} "{s}"language.h {symtab_h} "{s}"target.h {value_h} | |
1151 | ||
1152 | "{o}"exec.c.o \Option-f "{s}"exec.c {defs_h} {gdbcmd_h} {gdbcore_h} {inferior_h} \Option-d | |
1153 | "{s}"target.h "{s}"language.h | |
1154 | ||
1155 | "{o}"expprint.c.o \Option-f "{s}"expprint.c {defs_h} {expression_h} {gdbtypes_h} \Option-d | |
1156 | "{s}"language.h "{s}"parser-defs.h {symtab_h} {value_h} | |
1157 | ||
1158 | "{o}"findvar.c.o \Option-f "{s}"findvar.c {defs_h} {gdbcore_h} {inferior_h} "{s}"target.h | |
1159 | ||
1160 | "{o}"fork-child.c.o \Option-f "{s}"fork-child.c {wait_h} {defs_h} {gdbcore_h} \Option-d | |
1161 | {inferior_h} "{s}"target.h "{s}"terminal.h "{s}"thread.h | |
1162 | ||
1163 | "{o}"gdbtypes.c.o \Option-f "{s}"gdbtypes.c {bfd_h} "{s}"complaints.h {defs_h} {expression_h} \Option-d | |
1164 | {gdbtypes_h} "{s}"language.h "{s}"objfiles.h "{s}"symfile.h {symtab_h} "{s}"target.h \Option-d | |
1165 | {value_h} | |
1166 | ||
1167 | "{o}"go32-xdep.c.o \Option-f "{s}"go32-xdep.c | |
1168 | ||
1169 | "{o}"gould-pinsn.c.o \Option-f "{s}"gould-pinsn.c "{s}"{OP_INCLUDE}:np1.h {defs_h} {frame_h} \Option-d | |
1170 | {gdbcore_h} {symtab_h} | |
1171 | ||
1172 | "{o}"gould-xdep.c.o \Option-f "{s}"gould-xdep.c {defs_h} {gdbcore_h} {inferior_h} | |
1173 | "{o}"h8300-tdep.c.o \Option-f "{s}"h8300-tdep.c {defs_h} {frame_h} {symtab_h} | |
1174 | ||
1175 | "{o}"h8500-tdep.c.o \Option-f "{s}"h8500-tdep.c {bfd_h} {dis_asm_h} {defs_h} \Option-d | |
1176 | {expression_h} {frame_h} {gdbcmd_h} {gdbtypes_h} {symtab_h} \Option-d | |
1177 | {value_h} | |
1178 | ||
1179 | "{o}"hp300ux-nat.c.o \Option-f "{s}"hp300ux-nat.c {defs_h} {gdbcore_h} {inferior_h} | |
1180 | "{o}"hppa-pinsn.c.o \Option-f "{s}"hppa-pinsn.c {bfd_h} {dis_asm_h} {defs_h} | |
1181 | ||
1182 | "{o}"hppa-tdep.c.o \Option-f "{s}"hppa-tdep.c {wait_h} {defs_h} {gdbcmd_h} {gdbcore_h} \Option-d | |
1183 | {inferior_h} "{s}"objfiles.h "{s}"symfile.h "{s}"target.h | |
1184 | ||
1185 | "{o}"hppab-nat.c.o \Option-f "{s}"hppab-nat.c {bfd_h} {defs_h} {inferior_h} "{s}"target.h | |
1186 | "{o}"hppah-nat.c.o \Option-f "{s}"hppah-nat.c {bfd_h} {defs_h} {inferior_h} "{s}"target.h | |
1187 | "{o}"i386-pinsn.c.o \Option-f "{s}"i386-pinsn.c {bfd_h} {dis_asm_h} {defs_h} | |
1188 | "{o}"i386-tdep.c.o \Option-f "{s}"i386-tdep.c {defs_h} {gdbcore_h} {inferior_h} "{s}"target.h | |
1189 | "{o}"i386b-nat.c.o \Option-f "{s}"i386b-nat.c {defs_h} | |
1190 | "{o}"i386ly-nat.c.o \Option-f "{s}"i386ly-nat.c {defs_h} {frame_h} {inferior_h} "{s}"target.h | |
1191 | "{o}"i386ly-tdep.c.o \Option-f "{s}"i386ly-tdep.c {defs_h} {inferior_h} "{s}"target.h | |
1192 | "{o}"i386mach-nat.c.o \Option-f "{s}"i386mach-nat.c {defs_h} {gdbcore_h} {inferior_h} | |
1193 | ||
1194 | "{o}"i386v-nat.c.o \Option-f "{s}"i386v-nat.c {ieee_float_h} {defs_h} {gdbcore_h} \Option-d | |
1195 | {inferior_h} "{s}"language.h "{s}"target.h | |
1196 | ||
1197 | "{o}"i386v4-nat.c.o \Option-f "{s}"i386v4-nat.c {defs_h} | |
1198 | ||
1199 | "{o}"i387-tdep.c.o \Option-f "{s}"i387-tdep.c {ieee_float_h} {defs_h} {gdbcore_h} \Option-d | |
1200 | {inferior_h} "{s}"language.h | |
1201 | ||
1202 | "{o}"i960-pinsn.c.o \Option-f "{s}"i960-pinsn.c {bfd_h} {dis_asm_h} {defs_h} | |
1203 | ||
1204 | "{o}"i960-tdep.c.o \Option-f "{s}"i960-tdep.c {ieee_float_h} {defs_h} {expression_h} \Option-d | |
1205 | {frame_h} {gdbtypes_h} {symtab_h} {value_h} | |
1206 | ||
1207 | "{o}"infcmd.c.o \Option-f "{s}"infcmd.c {defs_h} "{s}"environ.h {gdbcmd_h} {gdbcore_h} \Option-d | |
1208 | {inferior_h} "{s}"target.h "{s}"language.h | |
1209 | ||
1210 | "{o}"inflow.c.o \Option-f "{s}"inflow.c {bfd_h} {command_h} {defs_h} {inferior_h} \Option-d | |
1211 | "{s}"signals.h "{s}"target.h "{s}"terminal.h "{s}"thread.h | |
1212 | ||
1213 | "{o}"infptrace.c.o \Option-f "{s}"infptrace.c {defs_h} {gdbcore_h} {inferior_h} "{s}"target.h | |
1214 | ||
1215 | "{o}"infrun.gc.o \Option-f "{s}"infrun.c {wait_h} {defs_h} {gdbcmd_h} {gdbcore_h} \Option-d | |
1216 | {inferior_h} "{s}"target.h "{s}"thread.h | |
1217 | ||
1218 | "{o}"inftarg.c.o \Option-f "{s}"inftarg.c {wait_h} {defs_h} {gdbcore_h} {inferior_h} \Option-d | |
1219 | "{s}"target.h "{s}"terminal.h {command_h} | |
1220 | ||
1221 | "{o}"irix4-nat.c.o \Option-f "{s}"irix4-nat.c {defs_h} {inferior_h} | |
1222 | "{o}"isi-xdep.c.o \Option-f "{s}"isi-xdep.c | |
1223 | ||
1224 | "{o}"language.c.o \Option-f "{s}"language.c {bfd_h} {defs_h} {expression_h} {frame_h} \Option-d | |
1225 | {gdbcmd_h} {gdbtypes_h} "{s}"language.h "{s}"parser-defs.h {symtab_h} \Option-d | |
1226 | "{s}"target.h {value_h} | |
1227 | ||
1228 | "{o}"m2-lang.c.o \Option-f "{s}"m2-lang.c {defs_h} {expression_h} {gdbtypes_h} \Option-d | |
1229 | "{s}"language.h "{s}"m2-lang.h "{s}"parser-defs.h {symtab_h} | |
1230 | ||
1231 | "{o}"m2-typeprint.c.o \Option-f "{s}"m2-typeprint.c {defs_h} {expression_h} {gdbcmd_h} \Option-d | |
1232 | {gdbcore_h} {gdbtypes_h} "{s}"language.h "{s}"m2-lang.h {symtab_h} "{s}"target.h \Option-d | |
1233 | {value_h} | |
1234 | ||
1235 | "{o}"m2-valprint.c.o \Option-f "{s}"m2-valprint.c {defs_h} {gdbtypes_h} {symtab_h} \Option-d | |
1236 | "{s}"valprint.h | |
1237 | ||
1238 | "{o}"m68k-pinsn.c.o \Option-f "{s}"m68k-pinsn.c {bfd_h} {dis_asm_h} {defs_h} | |
1239 | "{o}"m68k-tdep.c.o \Option-f "{s}"m68k-tdep.c {defs_h} {frame_h} {symtab_h} | |
1240 | "{o}"m68kly-nat.c.o \Option-f "{s}"m68kly-nat.c {defs_h} {frame_h} {inferior_h} "{s}"target.h | |
1241 | "{o}"m88k-nat.c.o \Option-f "{s}"m88k-nat.c {defs_h} {gdbcore_h} {inferior_h} | |
1242 | "{o}"m88k-pinsn.c.o \Option-f "{s}"m88k-pinsn.c {defs_h} {symtab_h} | |
1243 | "{o}"m88k-tdep.c.o \Option-f "{s}"m88k-tdep.c {defs_h} {gdbcore_h} {inferior_h} | |
1244 | ||
939baabe | 1245 | "{o}"main.c.o \Option-f "{s}"main.c {bfd_h} {getopt_h} {readline_headers} "{s}"call-cmds.h \Option-d |
8dc3e3d7 SS |
1246 | {defs_h} {gdbcmd_h} {inferior_h} "{s}"language.h "{s}"signals.h \Option-d |
1247 | {remote_utils_h} | |
939baabe | 1248 | {CC} {INTERNAL_CFLAGS} {READLINE_CFLAGS} "{srcdir}"main.c -o "{o}"main.c.o |
8dc3e3d7 SS |
1249 | |
1250 | "{o}"maint.c.o \Option-f "{s}"maint.c {defs_h} {gdbcmd_h} {gdbtypes_h} {symtab_h} "{s}"language.h \Option-d | |
1251 | {expression_h} | |
1252 | ||
1253 | "{o}"mdebugread.c.o \Option-f "{s}"mdebugread.c "{s}"buildsym.h "{s}"complaints.h {bfd_h} {defs_h} \Option-d | |
1254 | {expression_h} "{s}"gdb-stabs.h {gdbcore_h} {gdbtypes_h} "{s}"language.h \Option-d | |
1255 | "{s}"objfiles.h "{s}"partial-stab.h "{s}"stabsread.h "{s}"symfile.h {symtab_h} | |
1256 | ||
1257 | "{o}"mem-break.c.o \Option-f "{s}"mem-break.c {defs_h} | |
1258 | ||
1259 | "{o}"minsyms.c.o \Option-f "{s}"minsyms.c {bfd_h} {defs_h} "{s}"objfiles.h "{s}"symfile.h \Option-d | |
1260 | {symtab_h} | |
1261 | ||
1262 | "{o}"mips-nat.c.o \Option-f "{s}"mips-nat.c {defs_h} {gdbcore_h} {inferior_h} | |
1263 | "{o}"mips-pinsn.c.o \Option-f "{s}"mips-pinsn.c {bfd_h} {dis_asm_h} {defs_h} | |
1264 | ||
1265 | "{o}"mips-tdep.c.o \Option-f "{s}"mips-tdep.c {defs_h} {gdbcmd_h} {gdbcore_h} \Option-d | |
1266 | {inferior_h} "{s}"language.h "{s}"objfiles.h "{s}"symfile.h | |
1267 | ||
1268 | "{o}"mipsread.c.o \Option-f "{s}"mipsread.c "{s}"buildsym.h "{s}"complaints.h {bfd_h} {defs_h} \Option-d | |
1269 | {expression_h} "{s}"gdb-stabs.h {gdbcore_h} {gdbtypes_h} "{s}"language.h \Option-d | |
1270 | "{s}"objfiles.h "{s}"partial-stab.h "{s}"stabsread.h "{s}"symfile.h {symtab_h} | |
1271 | ||
1272 | "{o}"news-xdep.c.o \Option-f "{s}"news-xdep.c | |
1273 | ||
1274 | "{o}"Onindy.c.o \Option-f "{s}"nindy-share:Onindy.c {wait_h} "{s}"nindy-share:block_io.h \Option-d | |
1275 | "{s}"nindy-share:env.h | |
1276 | {CC} {INTERNAL_CFLAGS} "{srcdir}"nindy-share:Onindy.c -o "{o}"nindy.c.o | |
1277 | ||
1278 | "{o}"nindy.c.o \Option-f "{s}"nindy-share:nindy.c {wait_h} "{s}"nindy-share:block_io.h \Option-d | |
1279 | "{s}"nindy-share:env.h | |
1280 | {CC} {INTERNAL_CFLAGS} "{srcdir}"nindy-share:nindy.c -o "{o}"nindy.c.o | |
1281 | ||
1282 | "{o}"nlmread.c.o \Option-f "{s}"nlmread.c {bfd_h} "{s}"buildsym.h "{s}"complaints.h {defs_h} \Option-d | |
1283 | "{s}"gdb-stabs.h "{s}"objfiles.h "{s}"symfile.h {symtab_h} "{s}"stabsread.h | |
1284 | ||
1285 | "{o}"ttyflush.c.o \Option-f "{s}"nindy-share:ttyflush.c | |
1286 | {CC} {INTERNAL_CFLAGS} "{srcdir}"nindy-share:ttyflush.c -o "{o}"ttyflush.c.o | |
1287 | ||
1288 | "{o}"nindy-tdep.c.o \Option-f "{s}"nindy-tdep.c {defs_h} {frame_h} {symtab_h} | |
1289 | ||
1290 | "{o}"ns32k-pinsn.c.o \Option-f "{s}"ns32k-pinsn.c {defs_h} {gdbcore_h} "{s}"ns32k-opcode.h \Option-d | |
1291 | {symtab_h} | |
1292 | ||
1293 | "{o}"objfiles.c.o \Option-f "{s}"objfiles.c {bfd_h} {defs_h} "{s}"objfiles.h "{s}"symfile.h \Option-d | |
1294 | {symtab_h} | |
1295 | ||
1296 | "{o}"osfsolib.c.o \Option-f "{s}"osfsolib.c {command_h} {defs_h} {gdbcore_h} {inferior_h} \Option-d | |
1297 | "{s}"objfiles.h "{s}"regex.h "{s}"symfile.h "{s}"target.h "{s}"language.h | |
1298 | ||
1299 | "{o}"paread.c.o \Option-f "{s}"paread.c {bfd_h} "{s}"buildsym.h "{s}"complaints.h {defs_h} \Option-d | |
1300 | "{s}"gdb-stabs.h "{s}"objfiles.h "{s}"symfile.h {symtab_h} | |
1301 | ||
1302 | "{o}"parse.c.o \Option-f "{s}"parse.c {command_h} {defs_h} {expression_h} {frame_h} \Option-d | |
1303 | {gdbtypes_h} "{s}"language.h "{s}"parser-defs.h {symtab_h} {value_h} | |
1304 | ||
1305 | "{o}"printcmd.gc.o \Option-f "{s}"printcmd.c {breakpoint_h} {defs_h} {expression_h} \Option-d | |
1306 | {gdbcmd_h} {gdbcore_h} {gdbtypes_h} "{s}"language.h "{s}"objfiles.h "{s}"symfile.h \Option-d | |
1307 | {symtab_h} "{s}"target.h | |
1308 | ||
1309 | "{o}"procfs.c.o \Option-f "{s}"procfs.c {command_h} {defs_h} {gdbcore_h} {inferior_h} \Option-d | |
1310 | "{s}"target.h | |
1311 | ||
1312 | "{o}"pyr-pinsn.c.o \Option-f "{s}"pyr-pinsn.c "{s}"{OP_INCLUDE}:pyr.h {defs_h} {gdbcore_h} \Option-d | |
1313 | {symtab_h} | |
1314 | ||
1315 | "{o}"pyr-tdep.c.o \Option-f "{s}"pyr-tdep.c {defs_h} | |
1316 | "{o}"pyr-xdep.c.o \Option-f "{s}"pyr-xdep.c {defs_h} {gdbcore_h} {inferior_h} | |
1317 | ||
1318 | "{o}"regex.c.o \Option-f "{s}"regex.c "{s}"regex.h | |
1319 | ||
1320 | "{o}"remote-adapt.c.o \Option-f "{s}"remote-adapt.c {wait_h} {defs_h} {gdbcore_h} \Option-d | |
1321 | {inferior_h} "{s}"target.h "{s}"terminal.h | |
1322 | ||
1323 | "{o}"remote-bug.c.o \Option-f "{s}"remote-bug.c {wait_h} {defs_h} {gdbcore_h} \Option-d | |
1324 | {inferior_h} "{s}"target.h "{s}"terminal.h {remote_utils_h} | |
1325 | ||
1326 | "{o}"remote-eb.c.o \Option-f "{s}"remote-eb.c {wait_h} "{srcdir}"config:a29k:tm-a29k.h \Option-d | |
1327 | {defs_h} {gdbcore_h} {inferior_h} "{s}"symfile.h "{s}"target.h "{s}"terminal.h | |
1328 | ||
1329 | "{o}"remote-es.c.o \Option-f "{s}"remote-es.c {bfd_h} {wait_h} {command_h} {defs_h} \Option-d | |
1330 | {inferior_h} {remote_utils_h} "{s}"terminal.h | |
1331 | ||
1332 | "{o}"remote-hms.c.o \Option-f "{s}"remote-hms.c {wait_h} {defs_h} {gdbcore_h} \Option-d | |
1333 | {inferior_h} "{s}"serial.h "{s}"target.h "{s}"terminal.h | |
1334 | ||
1335 | "{o}"remote-mips.c.o \Option-f "{s}"remote-mips.c {wait_h} {defs_h} {gdbcmd_h} \Option-d | |
1336 | {gdbcore_h} {inferior_h} "{s}"serial.h "{s}"symfile.h "{s}"target.h | |
1337 | ||
1338 | "{o}"remote-mm.c.o \Option-f "{s}"remote-mm.c {bfd_h} {wait_h} {defs_h} {inferior_h} \Option-d | |
1339 | "{s}"minimon.h "{s}"target.h "{s}"terminal.h | |
1340 | ||
1341 | "{o}"remote-mon.c.o \Option-f "{s}"remote-mon.c {wait_h} {command_h} {defs_h} \Option-d | |
1342 | {gdbcore_h} "{s}"monitor.h "{s}"serial.h "{s}"target.h | |
1343 | ||
1344 | "{o}"remote-nindy.c.o \Option-f "{s}"remote-nindy.c {ieee_float_h} {wait_h} {command_h} \Option-d | |
1345 | {defs_h} {gdbcore_h} {inferior_h} \Option-d | |
1346 | "{s}"nindy-share:env.h "{s}"nindy-share:stop.h {remote_utils_h} \Option-d | |
1347 | "{s}"symfile.h | |
1348 | ||
1349 | "{o}"remote-sim.c.o \Option-f "{s}"remote-sim.c {wait_h} {defs_h} {gdbcore_h} \Option-d | |
1350 | {inferior_h} "{s}"target.h "{s}"terminal.h | |
1351 | ||
1352 | "{o}"remote-st.c.o \Option-f "{s}"remote-st.c {wait_h} {defs_h} {gdbcore_h} "{s}"serial.h \Option-d | |
1353 | "{s}"target.h | |
1354 | ||
1355 | "{o}"remote-udi.c.o \Option-f "{s}"remote-udi.c {bfd_h} {wait_h} {defs_h} {gdbcmd_h} \Option-d | |
1356 | {inferior_h} "{s}"target.h "{s}"terminal.h {udiheaders} | |
1357 | ||
1358 | "{o}"remote-vx.c.o \Option-f "{s}"remote-vx.c {wait_h} "{s}"complaints.h {defs_h} {gdbcmd_h} \Option-d | |
1359 | {gdbcore_h} {inferior_h} "{s}"target.h "{s}"vx-share:dbgRpcLib.h \Option-d | |
1360 | "{s}"vx-share:ptrace.h "{s}"vx-share:xdr_ld.h "{s}"vx-share:xdr_ptrace.h \Option-d | |
1361 | "{s}"vx-share:xdr_rdb.h | |
1362 | ||
1363 | "{o}"remote-z8k.c.o \Option-f "{s}"remote-z8k.c {wait_h} "{srcdir}":sim:z8k:sim.h \Option-d | |
1364 | {defs_h} {gdbcore_h} {inferior_h} "{s}"target.h "{s}"terminal.h | |
1365 | ||
1366 | "{o}"remote-utils.c.o \Option-f "{s}"remote-utils.c {defs_h} {gdbcmd_h} {gdbcore_h} \Option-d | |
1367 | {inferior_h} {remote_utils_h} | |
1368 | ||
1369 | "{o}"remote.c.o \Option-f "{s}"remote.c {bfd_h} {wait_h} {defs_h} {gdbcmd_h} \Option-d | |
1370 | {inferior_h} {remote_utils_h} "{s}"symfile.h "{s}"terminal.h | |
1371 | ||
1372 | "{o}"rs6000-nat.c.o \Option-f "{s}"rs6000-nat.c {bfd_h} {defs_h} {inferior_h} "{s}"target.h | |
1373 | ||
1374 | "{o}"rs6000-pinsn.c.o \Option-f "{s}"rs6000-pinsn.c "{s}"{OP_INCLUDE}:rs6k.h {defs_h} | |
1375 | ||
1376 | "{o}"rs6000-tdep.c.o \Option-f "{s}"rs6000-tdep.c {defs_h} {gdbcore_h} {inferior_h} \Option-d | |
1377 | "{s}"target.h "{s}"xcoffsolib.h | |
1378 | ||
1379 | "{o}"ser-go32.c.o \Option-f "{s}"ser-go32.c {defs_h} "{s}"serial.h | |
1380 | "{o}"ser-mac.c.o \Option-f "{s}"ser-mac.c {defs_h} "{s}"serial.h | |
1381 | "{o}"ser-tcp.c.o \Option-f "{s}"ser-tcp.c {defs_h} "{s}"serial.h "{s}"signals.h | |
1382 | "{o}"ser-unix.c.o \Option-f "{s}"ser-unix.c {defs_h} "{s}"serial.h | |
1383 | "{o}"serial.c.o \Option-f "{s}"serial.c {defs_h} "{s}"serial.h | |
1384 | ||
1385 | "{o}"sh-tdep.c.o \Option-f "{s}"sh-tdep.c {bfd_h} {dis_asm_h} \Option-d | |
1386 | "{srcdir}":opcodes:sh-opc.h {defs_h} {expression_h} {frame_h} \Option-d | |
1387 | {gdbcmd_h} {gdbtypes_h} {symtab_h} {value_h} | |
1388 | ||
1389 | "{o}"solib.c.o \Option-f "{s}"solib.c {command_h} {defs_h} {gdbcore_h} {inferior_h} \Option-d | |
1390 | "{s}"objfiles.h "{s}"regex.h "{s}"symfile.h "{s}"target.h | |
1391 | ||
1392 | "{o}"source.gc.o \Option-f "{s}"source.c {defs_h} {expression_h} {frame_h} {gdbcmd_h} \Option-d | |
1393 | {gdbcore_h} "{s}"language.h "{s}"objfiles.h "{s}"regex.h "{s}"symfile.h {symtab_h} | |
1394 | ||
1395 | "{o}"sparc-nat.c.o \Option-f "{s}"sparc-nat.c {bfd_h} {defs_h} {inferior_h} "{s}"target.h | |
1396 | "{o}"sparc-pinsn.c.o \Option-f "{s}"sparc-pinsn.c {bfd_h} {dis_asm_h} {defs_h} | |
1397 | ||
1398 | "{o}"sparc-tdep.c.o \Option-f "{s}"sparc-tdep.c {ieee_float_h} {defs_h} {gdbcore_h} \Option-d | |
1399 | {inferior_h} "{s}"objfiles.h "{s}"symfile.h "{s}"target.h | |
1400 | ||
1401 | "{o}"stabsread.c.o \Option-f "{s}"stabsread.c {bfd_h} {INCLUDE_DIR}:aout:stab.def \Option-d | |
1402 | "{INCLUDE_DIR}":aout:stab_gnu.h "{s}"buildsym.h "{s}"complaints.h {defs_h} \Option-d | |
1403 | {gdbtypes_h} "{s}"objfiles.h "{s}"stabsread.h "{s}"symfile.h {symtab_h} | |
1404 | ||
1405 | "{o}"stack.c.o \Option-f "{s}"stack.c {defs_h} {gdbcmd_h} {gdbcore_h} {inferior_h} \Option-d | |
1406 | "{s}"language.h "{s}"target.h | |
1407 | ||
1408 | "{o}"sun3-nat.c.o \Option-f "{s}"sun3-nat.c {defs_h} {gdbcore_h} {inferior_h} | |
1409 | "{o}"sun386-nat.c.o \Option-f "{s}"sun386-nat.c {defs_h} {inferior_h} {gdbcore_h} | |
1410 | ||
1411 | "{o}"symfile.c.o \Option-f "{s}"symfile.c {breakpoint_h} "{s}"complaints.h {defs_h} \Option-d | |
1412 | {expression_h} {gdbcmd_h} {gdbcore_h} {gdbtypes_h} \Option-d | |
1413 | "{s}"language.h "{s}"objfiles.h "{s}"symfile.h {symtab_h} "{s}"target.h | |
1414 | ||
1415 | "{o}"symm-tdep.c.o \Option-f "{s}"symm-tdep.c {defs_h} {gdbcore_h} {inferior_h} | |
1416 | "{o}"symm-nat.c.o \Option-f "{s}"symm-nat.c {defs_h} {gdbcore_h} {inferior_h} | |
1417 | ||
1418 | "{o}"symmisc.c.o \Option-f "{s}"symmisc.c {bfd_h} {breakpoint_h} {command_h} {defs_h} \Option-d | |
1419 | {expression_h} {gdbtypes_h} "{s}"language.h "{s}"objfiles.h "{s}"symfile.h \Option-d | |
1420 | {symtab_h} | |
1421 | ||
1422 | "{o}"symtab.c.o \Option-f "{s}"symtab.c "{s}"call-cmds.h {defs_h} {expression_h} {frame_h} \Option-d | |
1423 | {gdbcmd_h} {gdbcore_h} {gdbtypes_h} "{s}"language.h "{s}"objfiles.h \Option-d | |
1424 | "{s}"regex.h "{s}"symfile.h {symtab_h} "{s}"target.h {value_h} | |
1425 | ||
1426 | "{o}"tahoe-pinsn.c.o \Option-f "{s}"tahoe-pinsn.c "{s}"{OP_INCLUDE}:tahoe.h {defs_h} \Option-d | |
1427 | {symtab_h} | |
1428 | ||
1429 | "{o}"target.c.o \Option-f "{s}"target.c {bfd_h} {defs_h} {gdbcmd_h} {inferior_h} \Option-d | |
1430 | "{s}"objfiles.h "{s}"symfile.h "{s}"target.h | |
1431 | ||
1432 | "{o}"thread.c.o \Option-f "{s}"thread.c {defs_h} "{s}"thread.h {gdbcmd_h} | |
1433 | ||
1434 | "{o}"typeprint.c.o \Option-f "{s}"typeprint.c {defs_h} {expression_h} {gdbcmd_h} \Option-d | |
1435 | {gdbcore_h} {gdbtypes_h} "{s}"language.h {symtab_h} "{s}"target.h \Option-d | |
1436 | {value_h} | |
1437 | ||
1438 | "{o}"ultra3-nat.c.o \Option-f "{s}"ultra3-nat.c {defs_h} {gdbcore_h} {inferior_h} | |
1439 | "{o}"ultra3-xdep.c.o \Option-f "{s}"ultra3-xdep.c {defs_h} {gdbcore_h} {inferior_h} | |
1440 | "{o}"umax-xdep.c.o \Option-f "{s}"umax-xdep.c {defs_h} {gdbcore_h} {inferior_h} | |
1441 | ||
1442 | "{o}"utils.c.o \Option-f "{s}"utils.c {bfd_h} {defs_h} {expression_h} {gdbcmd_h} \Option-d | |
1443 | "{s}"language.h "{s}"signals.h "{s}"target.h "{s}"terminal.h | |
1444 | ||
1445 | "{o}"valarith.c.o \Option-f "{s}"valarith.c {bfd_h} {defs_h} {expression_h} \Option-d | |
1446 | {gdbtypes_h} "{s}"language.h {symtab_h} "{s}"target.h {value_h} | |
1447 | ||
1448 | "{o}"valops.c.o \Option-f "{s}"valops.c {defs_h} {gdbcore_h} {inferior_h} "{s}"target.h | |
1449 | ||
1450 | "{o}"valprint.c.o \Option-f "{s}"valprint.c {defs_h} {expression_h} {gdbcmd_h} \Option-d | |
1451 | {gdbcore_h} {gdbtypes_h} "{s}"language.h {symtab_h} "{s}"target.h \Option-d | |
1452 | {value_h} | |
1453 | ||
1454 | "{o}"values.c.o \Option-f "{s}"values.c {defs_h} {expression_h} {frame_h} {gdbcmd_h} \Option-d | |
1455 | {gdbcore_h} {gdbtypes_h} {symtab_h} "{s}"target.h {value_h} | |
1456 | ||
1457 | "{o}"vax-pinsn.c.o \Option-f "{s}"vax-pinsn.c "{s}"{OP_INCLUDE}:vax.h {defs_h} {symtab_h} | |
1458 | ||
1459 | "{o}"xdr_ld.c.o \Option-f "{s}"vx-share:xdr_ld.c {defs_h} "{s}"vx-share:vxTypes.h \Option-d | |
1460 | "{s}"vx-share:vxWorks.h "{s}"vx-share:xdr_ld.h | |
1461 | {CC} {INTERNAL_CFLAGS} "{srcdir}"vx-share:xdr_ld.c -o "{o}"ld.c.o | |
1462 | ||
1463 | "{o}"xdr_ptrace.c.o \Option-f "{s}"vx-share:xdr_ptrace.c {defs_h} "{s}"vx-share:vxTypes.h \Option-d | |
1464 | "{s}"vx-share:vxWorks.h "{s}"vx-share:xdr_ptrace.h | |
1465 | {CC} {INTERNAL_CFLAGS} "{srcdir}"vx-share:xdr_ptrace.c -o "{o}"ptrace.c.o | |
1466 | ||
1467 | "{o}"xdr_rdb.c.o \Option-f "{s}"vx-share:xdr_rdb.c {defs_h} "{s}"vx-share:vxTypes.h \Option-d | |
1468 | "{s}"vx-share:vxWorks.h "{s}"vx-share:xdr_rdb.h | |
1469 | {CC} {INTERNAL_CFLAGS} "{srcdir}"vx-share:xdr_rdb.c -o "{o}"rdb.c.o | |
1470 | ||
1471 | "{o}"xcoffexec.c.o \Option-f "{s}"xcoffexec.c "{s}"{BFD_SRC}:libbfd.h {defs_h} {gdbcmd_h} \Option-d | |
1472 | {gdbcore_h} {inferior_h} "{s}"objfiles.h "{s}"symfile.h "{s}"target.h "{s}"xcoffsolib.h | |
1473 | ||
1474 | "{o}"xcoffread.c.o \Option-f "{s}"xcoffread.c {bfd_h} {INCLUDE_DIR}:aout:stab.def \Option-d | |
1475 | "{INCLUDE_DIR}":aout:stab_gnu.h "{INCLUDE_DIR}":coff:internal.h \Option-d | |
1476 | "{INCLUDE_DIR}":coff:rs6000.h "{s}"{BFD_SRC}:libcoff.h "{s}"buildsym.h \Option-d | |
1477 | "{s}"complaints.h {defs_h} {gdbtypes_h} "{s}"objfiles.h "{s}"stabsread.h "{s}"symfile.h \Option-d | |
1478 | {symtab_h} | |
1479 | ||
1480 | "{o}"xcoffsolib.c.o \Option-f "{s}"xcoffsolib.c {bfd_h} {defs_h} "{s}"xcoffsolib.h | |
1481 | ||
1482 | "{o}"z8k-tdep.c.o \Option-f "{s}"z8k-tdep.c {bfd_h} {dis_asm_h} {defs_h} {frame_h} \Option-d | |
1483 | {gdbcmd_h} {gdbtypes_h} {symtab_h} | |
1484 | ||
1485 | c-exp.tab.c.o \Option-f c-exp.tab.c "{s}"c-lang.h {defs_h} {expression_h} \Option-d | |
1486 | {gdbtypes_h} "{s}"language.h "{s}"parser-defs.h {symtab_h} {value_h} \Option-d | |
1487 | {bfd_h} "{s}"objfiles.h "{s}"symfile.h | |
1488 | ||
1489 | ch-exp.tab.c.o \Option-f ch-exp.tab.c "{s}"ch-lang.h {defs_h} {expression_h} \Option-d | |
1490 | {gdbtypes_h} "{s}"language.h "{s}"parser-defs.h {symtab_h} {value_h} \Option-d | |
1491 | {bfd_h} "{s}"objfiles.h "{s}"symfile.h | |
1492 | ||
1493 | m2-exp.tab.c.o \Option-f m2-exp.tab.c {defs_h} {expression_h} {gdbtypes_h} \Option-d | |
1494 | "{s}"language.h "{s}"m2-lang.h "{s}"parser-defs.h {symtab_h} {value_h} \Option-d | |
1495 | {bfd_h} "{s}"objfiles.h "{s}"symfile.h | |
1496 | ||
1497 | ### end of the gdb Makefile.in. | |
1498 | ||
1499 | "{o}"init.c.o \Option-f "{o}"init.c | |
1500 | ||
1501 | "{o}"version.c.o \Option-f "{o}"version.c |