Forgot to check in. (Change definition of tool_dir.)
[deliverable/binutils-gdb.git] / gdb / Makefile.in
CommitLineData
62e859f0 1#Copyright 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
33cf356a
SG
2
3# This file is part of GDB.
4
5# This program is free software; you can redistribute it and/or modify
3e5afc2c
RP
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
33cf356a 17# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
3e5afc2c
RP
18
19prefix = /usr/local
20
b68b44fa 21program_transform_name =
4db3902a
RP
22exec_prefix = $(prefix)
23bindir = $(exec_prefix)/bin
24libdir = $(exec_prefix)/lib
6a1f93f6 25tooldir = $(libdir)/$(target_alias)
4db3902a 26
3e5afc2c 27datadir = $(prefix)/lib
4db3902a 28mandir = $(prefix)/man
3e5afc2c
RP
29man1dir = $(mandir)/man1
30man2dir = $(mandir)/man2
31man3dir = $(mandir)/man3
32man4dir = $(mandir)/man4
33man5dir = $(mandir)/man5
34man6dir = $(mandir)/man6
35man7dir = $(mandir)/man7
36man8dir = $(mandir)/man8
37man9dir = $(mandir)/man9
4db3902a 38infodir = $(prefix)/info
3e5afc2c
RP
39includedir = $(prefix)/include
40docdir = $(datadir)/doc
41
42SHELL = /bin/sh
43
44INSTALL = install -c
45INSTALL_PROGRAM = $(INSTALL)
46INSTALL_DATA = $(INSTALL)
47
48AR = ar
33cf356a 49AR_FLAGS = qv
3e5afc2c
RP
50RANLIB = ranlib
51
33cf356a
SG
52# Flags that describe where you can find the termcap library.
53# This can be overridden in the host Makefile fragment file.
54TERMCAP = -ltermcap
55
56# System V: If you compile gdb with a compiler which uses the coff
57# encapsulation feature (this is a function of the compiler used, NOT
58# of the m-?.h file selected by config.gdb), you must make sure that
59# the GNU nm is the one that is used by munch.
60
61# If you are compiling with GCC, make sure that either 1) You use the
62# -traditional flag, or 2) You have the fixed include files where GCC
63# can reach them. Otherwise the ioctl calls in inflow.c
64# will be incorrectly compiled. The "fixincludes" script in the gcc
65# distribution will fix your include files up.
66#CC=cc
67#CC=gcc -traditional
68GCC=gcc
69
70# Directory containing source files. Don't clean up the spacing,
71# this exact string is matched for by the "configure" script.
72srcdir = .
d941d8c3 73
33cf356a
SG
74# It is also possible that you will need to add -I/usr/include/sys to the
75# CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
76# is where it should be according to Posix).
77
19d0f3f4
FF
78# If you use bison instead of yacc, it needs to include the "-y" argument.
79#BISON="bison -y"
33cf356a
SG
80BISON=yacc
81YACC=$(BISON)
33cf356a 82
33cf356a 83# where to find texinfo; GDB dist should include a recent one
967007ca 84TEXIDIR=${srcdir}/../texinfo
33cf356a
SG
85
86# where to find makeinfo, preferably one designed for texinfo-2
87MAKEINFO=makeinfo
88
89# Set this up with gcc if you have gnu ld and the loader will print out
90# line numbers for undefinded refs.
91#CC-LD=gcc -static
92CC-LD=${CC}
93
94# Where is the "include" directory? Traditionally ../include or ./include
95INCLUDE_DIR = ${srcdir}/../include
96INCLUDE_DEP = $$(INCLUDE_DIR)
97
98# Where is the source dir for the MMALLOC library? Traditionally ../mmalloc
99# or ./mmalloc (When we want the binary library built from it, we use
100# ${MMALLOC_DIR}${subdir}.)
101# Note that mmalloc can still be used on systems without mmap().
102# To use your system malloc, comment out the following defines.
103MMALLOC_DIR = ${srcdir}/../mmalloc
104MMALLOC_DEP = $$(MMALLOC_DIR)
105MMALLOC_LIB = ./../mmalloc${subdir}/libmmalloc.a
106# To use your system malloc, uncomment MMALLOC_DISABLE.
107#MMALLOC_DISABLE = -DNO_MMALLOC
108# To use mmalloc but disable corruption checking, uncomment MMALLOC_CHECK
109#MMALLOC_CHECK = -DNO_MMALLOC_CHECK
110MMALLOC_CFLAGS = ${MMALLOC_CHECK} ${MMALLOC_DISABLE}
111
112# Where is the source dir for the BFD library? Traditionally ../bfd or ./bfd
113# (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
114BFD_DIR = ${srcdir}/../bfd
115BFD_DEP = $$(BFD_DIR)
116BFD_LIB = ./../bfd${subdir}/libbfd.a
117
118# Where is the source dir for the READLINE library? Traditionally in .. or .
119# (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
120READLINE_DIR = ${srcdir}/../readline
121READLINE_DEP = $$(READLINE_DIR)
122RL_LIB = ./../readline${subdir}/libreadline.a
123
124# All the includes used for CFLAGS and for lint.
125# -I. for config files.
126# -I${srcdir} possibly for regex.h also.
1a0edbc7
FF
127# -I${srcdir}/config for more generic config files.
128INCLUDE_CFLAGS = -I. -I${srcdir} -I${srcdir}/config -I$(INCLUDE_DIR)
33cf356a
SG
129
130# M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
131# from the config/ directory.
132GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
133#PROFILE_CFLAGS = -pg
134
135# CFLAGS is specifically reserved for setting from the command line
136# when running make. I.E. "make USER_CFLAGS=-Wmissing-prototypes".
137CFLAGS = -g
138# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
139INTERNAL_CFLAGS = ${CFLAGS} ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MMALLOC_CFLAGS} ${INCLUDE_CFLAGS} ${USER_CFLAGS}
140# None of the things in CFLAGS will do any harm, and on some systems
d40309c7 141# (e.g. SunOS4) it is important to use the MH_CFLAGS.
33cf356a
SG
142LDFLAGS = $(CFLAGS)
143
144# Where is the "-liberty" library, containing getopt and obstack?
145LIBIBERTY_DIR = ${srcdir}/../libiberty
146LIBIBERTY = ./../libiberty${subdir}/libiberty.a
147
1e4f3c20
KR
148# Where is the "-lopcodes" library, with (some of) the opcode tables and
149# disassemblers?
150OPCODES = ./../opcodes${subdir}/libopcodes.a
151
33cf356a
SG
152# The config/mh-* file must define REGEX and REGEX1 on USG machines.
153# If your sysyem is missing alloca(), or, more likely, it's there but
154# it doesn't work, define ALLOCA & ALLOCA1 too.
33cf356a
SG
155
156# Libraries and corresponding dependencies for compiling gdb.
157# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
158# TERMCAP comes after readline, since readline depends on it.
d40309c7
JG
159CLIBS = ${BFD_LIB} ${RL_LIB} ${TERMCAP} ${OPCODES} ${MMALLOC_LIB} ${LIBIBERTY} \
160 ${XM_CLIBS} ${TM_CLIBS} ${NAT_CLIBS}
161CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${NAT_CDEPS} \
072b552a 162 ${BFD_LIB} ${RL_LIB} ${OPCODES} ${MMALLOC_LIB} ${LIBIBERTY}
33cf356a 163
d40309c7
JG
164ADD_FILES = ${REGEX} ${ALLOCA} ${XM_ADD_FILES} ${TM_ADD_FILES} ${NAT_ADD_FILES}
165ADD_DEPS = ${REGEX1} ${ALLOCA1} ${XM_ADD_FILES} ${TM_ADD_FILES} ${NAT_ADD_FILES}
33cf356a 166
3717e95b 167VERSION = 4.8.4
33cf356a
SG
168DIST=gdb
169
170LINT=/usr/5bin/lint
171LINTFLAGS= -I${BFD_DIR}
172
e7d3b7d1
RS
173RUNTEST=runtest
174RUNTESTFLAGS=
6fcb280e 175
33cf356a
SG
176# Host and target-dependent makefile fragments come in here.
177####
178# End of host and target-dependent makefile fragments
179
ef131e13 180FLAGS_TO_PASS = \
2fcc38b8
FF
181 "prefix=$(prefix)" \
182 "exec_prefix=$(exec_prefix)" \
ef131e13
JG
183 "against=$(against)" \
184 "AR=$(AR)" \
185 "AR_FLAGS=$(AR_FLAGS)" \
186 "CC=$(CC)" \
187 "CFLAGS=$(CFLAGS)" \
aecc5459
ILT
188 "CHILLFLAGS=$(CHILLFLAGS)" \
189 "CHILL=$(CHILL)" \
190 "CHILL_LIB=$(CHILL_LIB)" \
aecc5459
ILT
191 "CXX=$(CXX)" \
192 "CXXFLAGS=$(CXXFLAGS)" \
ef131e13
JG
193 "RANLIB=$(RANLIB)" \
194 "MAKEINFO=$(MAKEINFO)" \
195 "INSTALL=$(INSTALL)" \
196 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
197 "INSTALL_DATA=$(INSTALL_DATA)" \
e7d3b7d1
RS
198 "RUNTEST=$(RUNTEST)" \
199 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
ef131e13
JG
200 "BISON=$(BISON)"
201
aecc5459
ILT
202# Flags that we pass when building the testsuite.
203
204CC_FOR_TARGET = ` \
205 if [ -f $${rootme}/../gcc/Makefile ] ; then \
206 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
207 else \
208 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
209 echo $(CC); \
210 else \
211 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
212 fi; \
213 fi`
214
215CXX = gcc
216
217CXX_FOR_TARGET = ` \
218 if [ -f $${rootme}/../gcc/Makefile ] ; then \
219 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
220 else \
221 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
222 echo $(CXX); \
223 else \
224 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
225 fi; \
226 fi`
227
aecc5459
ILT
228CHILLFLAGS = $(CFLAGS)
229CHILL = gcc
230CHILL_FOR_TARGET = ` \
231 if [ -f $${rootme}/../gcc/Makefile ] ; then \
232 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../chillrt/; \
233 else \
234 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
235 echo $(CC); \
236 else \
237 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
238 fi; \
239 fi`
240CHILL_LIB = -lchill
1fa66e36 241
0b96ed06
FF
242# The use of $$(x_FOR_TARGET) reduces the command line length by not
243# duplicating the lengthy definition.
aecc5459
ILT
244TARGET_FLAGS_TO_PASS = \
245 "prefix=$(prefix)" \
246 "exec_prefix=$(exec_prefix)" \
247 "against=$(against)" \
0b96ed06
FF
248 'CC=$$(CC_FOR_TARGET)' \
249 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
aecc5459 250 "CFLAGS=$(CFLAGS)" \
aecc5459 251 "CHILLFLAGS=$(CHILLFLAGS)" \
0b96ed06
FF
252 'CHILL=$$(CHILL_FOR_TARGET)' \
253 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
aecc5459 254 "CHILL_LIB=$(CHILL_LIB)" \
0b96ed06
FF
255 'CXX=$$(CXX_FOR_TARGET)' \
256 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
aecc5459
ILT
257 "CXXFLAGS=$(CXXFLAGS)" \
258 "MAKEINFO=$(MAKEINFO)" \
259 "INSTALL=$(INSTALL)" \
260 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
261 "INSTALL_DATA=$(INSTALL_DATA)" \
e7d3b7d1
RS
262 "RUNTEST=$(RUNTEST)" \
263 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
aecc5459
ILT
264 "BISON=$(BISON)"
265
5287eacd 266# All source files that go into linking GDB.
2531303c
FF
267# Source files which are included via a config/*/* Makefile fragment should
268# *not* be specified here; they're in "ALLDEPFILES".
5287eacd
FF
269# Neither should links made at configuration time be specified here, since
270# SFILES is used in building the distribution archive.
271
24c2857c
JK
272SFILES = ${srcdir}/blockframe.c ${srcdir}/breakpoint.c ${srcdir}/buildsym.c \
273 ${srcdir}/c-exp.y ${srcdir}/c-lang.c ${srcdir}/c-typeprint.c \
274 ${srcdir}/c-valprint.c ${srcdir}/ch-exp.y ${srcdir}/ch-lang.c \
275 ${srcdir}/ch-typeprint.c ${srcdir}/ch-valprint.c ${srcdir}/coffread.c \
276 ${srcdir}/command.c ${srcdir}/complaints.c ${srcdir}/core.c \
277 ${srcdir}/cp-valprint.c ${srcdir}/dbxread.c ${srcdir}/demangle.c \
278 ${srcdir}/dwarfread.c ${srcdir}/elfread.c ${srcdir}/environ.c \
279 ${srcdir}/eval.c ${srcdir}/expprint.c ${srcdir}/findvar.c \
280 ${srcdir}/gdbtypes.c \
281 ${srcdir}/infcmd.c ${srcdir}/inflow.c ${srcdir}/infrun.c \
5287eacd
FF
282 ${srcdir}/language.c ${srcdir}/putenv.c ${srcdir}/m2-exp.y \
283 ${srcdir}/m2-lang.c ${srcdir}/m2-typeprint.c \
24c2857c
JK
284 ${srcdir}/m2-valprint.c ${srcdir}/main.c ${srcdir}/maint.c \
285 ${srcdir}/mem-break.c ${srcdir}/minsyms.c ${srcdir}/mipsread.c \
286 ${srcdir}/objfiles.c ${srcdir}/parse.c ${srcdir}/printcmd.c \
287 ${srcdir}/remote.c ${srcdir}/source.c ${srcdir}/stabsread.c \
288 ${srcdir}/stack.c \
289 ${srcdir}/symfile.c ${srcdir}/symmisc.c ${srcdir}/symtab.c \
290 ${srcdir}/target.c ${srcdir}/typeprint.c ${srcdir}/utils.c \
291 ${srcdir}/valarith.c \
292 ${srcdir}/valops.c ${srcdir}/valprint.c ${srcdir}/values.c \
5287eacd 293 ${srcdir}/serial.c ${srcdir}/ser-go32.c ${srcdir}/ser-unix.c
2531303c
FF
294
295# Files that are not source code, but need to go into gdb-$(VERSION).tar.Z.
24c2857c
JK
296NONSRC = ${srcdir}/Makefile.in ${srcdir}/depend ${srcdir}/alldeps.mak \
297 ${srcdir}/munch ${srcdir}/configure.in \
298 ${srcdir}/ChangeLog ${srcdir}/ChangeLog-9091 ${srcdir}/ChangeLog-3.x \
299 ${srcdir}/gdb.1 ${srcdir}/refcard.ps ${srcdir}/README ${srcdir}/TODO \
300 TAGS ${srcdir}/NEWS ${srcdir}/Projects ${srcdir}/.gdbinit \
301 ${srcdir}/COPYING $(YYFILES) ${srcdir}/copying.c \
302 ${srcdir}/copying.awk \
303 ${srcdir}/saber.suppress ${srcdir}/standalone.c ${srcdir}/stuff.c \
5287eacd 304 ${srcdir}/kdb-start.c ${srcdir}/gcc.patch \
2531303c
FF
305 ${srcdir}/nindy-share/Makefile ${srcdir}/nindy-share/VERSION \
306 ${srcdir}/nindy-share/README ${srcdir}/vx-share/README \
d8aaff82 307 ${srcdir}/29k-share/README \
2531303c
FF
308 ${srcdir}/config/convex/Convex.notes
309
33cf356a
SG
310# All source files that lint should look at
311LINTFILES = $(SFILES) $(YYFILES) init.c
312
313# Any additional files specified on these lines should also be added to
2531303c 314# the NONSRC definition, so they go in the tar files.
33cf356a
SG
315SFILES_STAND = $(SFILES) standalone.c
316SFILES_KGDB = $(SFILES) stuff.c kdb-start.c
317
1a0edbc7 318# Header files that are not named in config/*/* Makefile fragments go here.
24c2857c
JK
319HFILES = ${srcdir}/breakpoint.h ${srcdir}/buildsym.h ${srcdir}/call-cmds.h \
320 ${srcdir}/command.h ${srcdir}/defs.h ${srcdir}/environ.h \
321 ${srcdir}/expression.h ${srcdir}/frame.h ${srcdir}/gdbcmd.h \
322 ${srcdir}/gdbcore.h ${srcdir}/gdbtypes.h ${srcdir}/gdb-stabs.h \
323 ${srcdir}/inferior.h ${srcdir}/language.h ${srcdir}/minimon.h \
324 ${srcdir}/objfiles.h ${srcdir}/parser-defs.h \
325 ${srcdir}/partial-stab.h ${srcdir}/serial.h ${srcdir}/signals.h \
326 ${srcdir}/solib.h ${srcdir}/symfile.h ${srcdir}/symtab.h \
327 ${srcdir}/stabsread.h ${srcdir}/target.h ${srcdir}/terminal.h \
328 ${srcdir}/typeprint.h ${srcdir}/xcoffsolib.h ${srcdir}/value.h \
329 ${srcdir}/c-lang.h ${srcdir}/ch-lang.h ${srcdir}/m2-lang.h \
330 ${srcdir}/complaints.h ${srcdir}/ns32k-opcode.h ${srcdir}/valprint.h \
331 ${srcdir}/config/m68k/tm-m68k.h ${srcdir}/config/pa/tm-hppa.h \
332 ${srcdir}/config/i960/tm-i960.h ${srcdir}/config/sparc/tm-sparc.h \
333 ${srcdir}/config/tm-sunos.h \
334 ${srcdir}/config/tm-sysv4.h ${srcdir}/config/m68k/xm-m68k.h \
335 ${srcdir}/config/sparc/xm-sparc.h \
336 ${srcdir}/config/xm-sysv4.h ${srcdir}/config/vax/xm-vax.h \
d8aaff82 337 ${srcdir}/config/nm-trash.h ${srcdir}/29k-share/udi/udiids.h \
2531303c
FF
338 ${srcdir}/29k-share/udi/udiphcfg.h ${srcdir}/29k-share/udi/udiphsun.h \
339 ${srcdir}/29k-share/udi/udiproc.h ${srcdir}/29k-share/udi/udipt29k.h \
340 ${srcdir}/29k-share/udi/udiptcfg.h ${srcdir}/29k-share/udi/udisoc.h \
341 ${srcdir}/29k-share/udi_soc ${srcdir}/nindy-share/b.out.h \
342 ${srcdir}/nindy-share/block_io.h ${srcdir}/nindy-share/coff.h \
343 ${srcdir}/nindy-share/demux.h ${srcdir}/nindy-share/env.h \
344 ${srcdir}/nindy-share/stop.h ${srcdir}/nindy-share/ttycntl.h \
345 ${srcdir}/vx-share/dbgRpcLib.h ${srcdir}/vx-share/ptrace.h \
346 ${srcdir}/vx-share/vxTypes.h ${srcdir}/vx-share/vxWorks.h \
347 ${srcdir}/vx-share/wait.h ${srcdir}/vx-share/xdr_ld.h \
348 ${srcdir}/vx-share/xdr_ptrace.h ${srcdir}/vx-share/xdr_rdb.h
349
350# GDB "info" files, which should be included in their entirety
351INFOFILES = gdb.info*
33cf356a 352
22473f72 353REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
33cf356a 354
24c2857c 355POSSLIBS = ${srcdir}/regex.c ${srcdir}/regex.h ${srcdir}/alloca.c
33cf356a
SG
356
357TESTS = testbpt.c testfun.c testrec.c testreg.c testregs.c
358
33cf356a
SG
359# Subdirectories of gdb, which should be included in their entirety in
360# gdb-xxx.tar.Z:
f4ed8840 361TARDIRS = doc sparclite # tests
33cf356a 362
2531303c 363DEPFILES = ${TDEPFILES} ${XDEPFILES} ${NATDEPFILES}
33cf356a 364
2531303c 365SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES)
33cf356a 366TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
2531303c
FF
367
368TARFILES = ${SFILES} ${HFILES} ${NONSRC} ${ALLDEPFILES} $(ALLCONFIG) \
0f0834c5 369 $(ALLPARAM) $(INFOFILES) ${POSSLIBS} ${REMOTE_EXAMPLES}
33cf356a 370
327f7197 371OBS = version.o main.o blockframe.o breakpoint.o findvar.o stack.o source.o \
33cf356a 372 values.o eval.o valops.o valarith.o valprint.o printcmd.o \
17cb669f 373 symtab.o symfile.o symmisc.o infcmd.o infrun.o remote.o \
327f7197 374 command.o utils.o expprint.o environ.o gdbtypes.o \
3402b1cf 375 copying.o $(DEPFILES) mem-break.o target.o \
00cea52f 376 putenv.o parse.o language.o $(YYOBJ) \
781fa085 377 buildsym.o objfiles.o minsyms.o maint.o demangle.o \
f4ed8840 378 dbxread.o coffread.o elfread.o dwarfread.o mipsread.o \
a8a69e63
FF
379 stabsread.o core.o c-lang.o ch-lang.o m2-lang.o complaints.o \
380 typeprint.o c-typeprint.o ch-typeprint.o m2-typeprint.o \
4e772f44
SG
381 c-valprint.o cp-valprint.o ch-valprint.o m2-valprint.o \
382 serial.o ser-hardwire.o
33cf356a
SG
383
384RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES)
385
c9c23412 386TSOBS = inflow.o
33cf356a
SG
387
388NTSOBS = standalone.o
389
390TSSTART = /lib/crt0.o
391
392NTSSTART = kdb-start.o
393
aecc5459 394SUBDIRS = doc testsuite
33cf356a
SG
395
396# For now, shortcut the "configure GDB for fewer languages" stuff.
e58de8a2
FF
397YYFILES = c-exp.tab.c m2-exp.tab.c ch-exp.tab.c
398YYOBJ = c-exp.tab.o m2-exp.tab.o ch-exp.tab.o
33cf356a
SG
399
400# Prevent Sun make from putting in the machine type. Setting
401# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
402.c.o:
403 ${CC} -c ${INTERNAL_CFLAGS} $<
404
405all: gdb
0139c441 406 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
6fcb280e 407
80c8fd72 408installcheck:
e7d3b7d1 409check: force
0139c441 410 @rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=check DODIRS=testsuite subdir_do
b396a969 411info dvi: force
0139c441 412 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
33cf356a 413install-info: force
0139c441 414 @$(MAKE) $(FLAGS_TO_PASS) DO=install-info "DODIRS=$(SUBDIRS)" subdir_do
33cf356a 415clean-info: force
0139c441 416 @$(MAKE) $(FLAGS_TO_PASS) DO=clean-info "DODIRS=$(SUBDIRS)" subdir_do
33cf356a
SG
417
418gdb.z:gdb.1
419 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
420 pack gdb.t ; rm -f gdb.t
421 mv gdb.t.z gdb.z
422
423install: gdb
ef131e13
JG
424 -parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
425 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
426 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
427 -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
428 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
429 -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
b68b44fa
ILT
430 -n=`t='$(program_transform_name)'; echo gdb | sed -e "" $$t`; \
431 $(INSTALL_PROGRAM) gdb $(bindir)/$$n; \
432 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$n.1
33cf356a 433 $(M_INSTALL)
0139c441 434 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
33cf356a
SG
435
436init.c: $(srcdir)/munch $(OBS) $(TSOBS)
437 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c
438
439gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o
440 ${CC-LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o gdb \
441 init.o $(OBS) $(TSOBS) $(ADD_FILES) $(CLIBS) $(LOADLIBES)
442
443saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
444 #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS
445 #load ./init.c $(SFILES)
b076b3f8
FF
446 #unload ${srcdir}/c-exp.y ${srcdir}/m2-exp.y ${srcdir}/ch-exp.y
447 #unload ${srcdir}/vx-share/*.h
33cf356a 448 #unload ${srcdir}/nindy-share/[A-Z]*
e58de8a2 449 #load c-exp.tab.c m2-exp.tab.c ch-exp.tab.c
33cf356a 450 #load copying.c version.c
1e4f3c20 451 #load ../opcodes/libopcodes.a
33cf356a
SG
452 #load ../libiberty/libiberty.a
453 #load ../bfd/libbfd.a
454 #load ../readline/libreadline.a
455 #load ../mmalloc/libmmalloc.a
456 #load -ltermcap
457 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
458 echo "Load .c corresponding to:" $(DEPFILES)
459
460
461# This is useful when debugging GDB, because some Unix's don't let you run GDB
462# on itself without copying the executable. So "make gdb1" will make
463# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
464# Removing gdb1 before the copy is the right thing if gdb1 is open
465# in another process.
466gdb1: gdb
467 rm -f gdb1
468 cp gdb gdb1
469
470# This is a remote stub which runs under unix and starts up an
471# inferior process. This is at least useful for debugging GDB's
472# remote support.
473rapp: $(RAPP_OBS)
474 rm -f rapp_init.c
475 ${srcdir}/munch ${MUNCH_DEFINE} ${RAPP_OBS} > rapp_init.c
476 ${CC-LD} $(LDFLAGS) -o $@ rapp_init.c $(RAPP_OBS)
477
478# Support for building Makefile out of configured pieces, automatically
479# generated dependencies, etc. alldeps.mak is a file that contains
2531303c
FF
480# "make" variable definitions for all ALLDEPFILES, ALLPARAM, and ALLCONFIG,
481# all cadged from the current contents of the config subtree.
33cf356a 482
2531303c
FF
483alldeps.mak: force
484 rm -f alldeps.mak alldeps*.tmp allparam*.tmp allconfig*.tmp
24c2857c 485 for i in `(cd ${srcdir}; find config -name '*.m[ht]' -print)` ; do \
33cf356a 486 echo $$i >>allconfig.tmp; \
24c2857c 487 awk <${srcdir}/$$i ' \
d40309c7 488 $$1 == "TDEPFILES=" || $$1 == "XDEPFILES=" \
2531303c 489 || $$1 == "NATDEPFILES=" { \
33cf356a
SG
490 for (i = 2; i <= NF; i++) \
491 print $$i >> "alldeps.tmp" ; \
492 } \
f4ed8840 493 $$1 == "TM_FILE=" || $$1 == "XM_FILE=" || $$1 == "NAT_FILE=" { \
33cf356a
SG
494 print $$2 >> "allparam.tmp" }' ; \
495 done
496 sort <alldeps.tmp | uniq | \
497 sed -e 's/arm-convert.o/arm-convert.s/' \
498 -e 's!^Onindy.o!nindy-share/Onindy.c!' \
499 -e 's!^nindy.o!nindy-share/nindy.c!' \
500 -e 's!ttybreak.o!nindy-share/ttybreak.c!' \
501 -e 's!ttyflush.o!nindy-share/ttyflush.c!' \
502 -e 's!xdr_ld.o!vx-share/xdr_ld.c!' \
503 -e 's!xdr_ptrace.o!vx-share/xdr_ptrace.c!' \
504 -e 's!xdr_rdb.o!vx-share/xdr_rdb.c!' \
6881fb6d 505 -e 's!udr.o!29k-share/udi/udr.c!' \
6881fb6d 506 -e 's!udip2soc.o!29k-share/udi/udip2soc.c!' \
2531303c
FF
507 -e '/..\/sim\//d' \
508 -e '/..\/opcodes\//d' \
33cf356a
SG
509 -e 's/\.o/.c/' \
510 >alldeps2.tmp
1a0edbc7 511 for i in `cat allparam.tmp` ; do \
24c2857c
JK
512 (cd ${srcdir} ; \
513 find config -name $$i -print ) >>allparam2.tmp ; \
1a0edbc7 514 done
2531303c
FF
515 echo '# Start of "alldeps.mak" definitions' >>alldeps.mak;
516 sort <alldeps2.tmp | uniq | awk 'BEGIN {printf "ALLDEPFILES="} \
24c2857c
JK
517 NR == 0 {printf "$${srcdir}/" $$0;} \
518 NR != 0 {printf "\\\n" "$${srcdir}/" $$0} \
2531303c 519 END {printf "\n\n"}' >>alldeps.mak;
1a0edbc7 520 sort <allparam2.tmp | uniq | awk 'BEGIN {printf "ALLPARAM="} \
24c2857c
JK
521 NR == 0 {printf "$${srcdir}/" $$0;} \
522 NR != 0 {printf "\\\n" "$${srcdir}/" $$0} \
2531303c 523 END {printf "\n\n"}' >>alldeps.mak;
33cf356a 524 sort <allconfig.tmp | uniq | awk 'BEGIN {printf "ALLCONFIG="} \
24c2857c
JK
525 NR == 0 {printf "$${srcdir}/" $$0;} \
526 NR != 0 {printf "\\\n" "$${srcdir}/" $$0} \
2531303c
FF
527 END {printf "\n\n"}' >>alldeps.mak;
528 echo '# End of "alldeps.mak" definitions' >>alldeps.mak;
529 rm -f alldeps*.tmp allparam*.tmp allconfig*.tmp
33cf356a
SG
530
531# The sed script makes everything which depends on {x,t}m.h depend on
532# config.status as well, in case someone reconfigures gdb out from
533# under an already compiled gdb.
534depend: $(SOURCES) Makefile.in
535 @echo Ignore errors about non-existent system-supplied include files
536 @echo for systems other than the one you are using.
ee7e82fe 537 @echo Also ignore any errors in arm-convert.s.
33cf356a 538 -$(GCC) -MM -nostdinc -I/usr/include $(CFLAGS) -I$(BFD_DIR) \
3402b1cf
PB
539 -I${READLINE_DIR} $(INCLUDE_CFLAGS) \
540 `ls $(SOURCES) | grep -v '\.[hy]$$' | \
33cf356a
SG
541 sort -u` >depend.tmp
542# If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except
b6113cc4 543# for xm.h, tm.h and nm.h. This allows the same "depend" file to be used
33cf356a
SG
544# by the various subdirectories.
545 if [ "${srcdir}" = "." ] ; then \
546 <depend.tmp sed \
547 -e 's; ./xm.h; xm.h;g' \
548 -e 's; ./tm.h; tm.h;g' \
b6113cc4 549 -e 's; ./nm.h; nm.h;g' \
33cf356a
SG
550 -e 's; \./; $${srcdir}/;g' \
551 -e 's; vx-share/; $${srcdir}/vx-share/;g' \
552 -e 's; nindy-share/; $${srcdir}/nindy-share/;g' \
6881fb6d 553 -e 's; 29k-share/; $${srcdir}/29k-share/;g' \
33cf356a
SG
554 >depend.tm2; \
555 rm depend.tmp; \
556 mv depend.tm2 depend.tmp; \
557 fi
558 <depend.tmp sed \
559 -e 's; [xt]m.h;& config.status;g' \
560 -e 's; $(INCLUDE_DIR)/; $(INCLUDE_DEP)/;g' \
561 -e 's; $(READLINE_DIR)/; $(READLINE_DEP)/;g' \
562 -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g' \
563 -e 's; ./xm.h; xm.h config.status;g' \
564 -e 's; ./tm.h; tm.h config.status;g' \
b6113cc4 565 -e 's; ./nm.h; nm.h config.status;g' \
33cf356a
SG
566 >depend
567 rm depend.tmp
568
569config.status:
570 @echo "You must configure gdb. Look at the README file for details."
571 @false
572
ef131e13
JG
573# This checks the configure.in file versus the config/ directory.
574config-check: config-check-hosts config-check-targets
575config-check-hosts:
576 grep gdb_host= ${srcdir}/configure.in | \
577 sed -e 's/.*gdb_host=//' -e 's/ ;;$$/.mh/' | sort -u >HOSTconf.o
578 (cd ${srcdir}/config; ls *.mh) >HOSTdir.o
579 diff -u HOSTconf.o HOSTdir.o
580
581config-check-targets:
582 grep gdb_target= ${srcdir}/configure.in | \
583 sed -e 's/.*gdb_target=//' -e 's/ ;;$$/.mh/' | sort -u >TARGconf.o
584 (cd ${srcdir}/config; ls *.mt) >TARGdir.o
585 diff -u HOSTconf.o HOSTdir.o
586
33cf356a
SG
587# These are not generated by "make depend" because they only are there
588# for some machines.
589# But these rules don't do what we want; we want to hack the foo.o: tm.h
590# dependency to do the right thing.
2225eb85
FF
591tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
592tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
33cf356a
SG
593xm-news1000.h: xm-news.h
594xm-i386-sv32.h: xm-i386.h
595tm-i386gas.h: tm-i386.h
596xm-sun4os4.h: xm-sparc.h
597tm-sun4os4.h: tm-sparc.h
598xm-vaxult.h: xm-vax.h
599xm-vaxbsd.h: xm-vax.h
600
2531303c 601kdb: $(NTSSTART) $(OBS) $(NTSOBS) ${ADD_DEPS} ${CDEPS}
33cf356a
SG
602 rm -f init.c
603 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(NTSOBS) > init.c
604 $(CC) $(LDFLAGS) -c init.c $(CLIBS)
605 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
606 -lc $(CLIBS)
607
8d57a263
JK
608# Put the proper machine-specific files first, so M-. on a machine
609# specific routine gets the one for the correct machine.
db7c818b 610# The xyzzy stuff below deals with empty DEPFILES
2531303c 611TAGS: ${TAGFILES}
24c2857c
JK
612 etags `find ${srcdir}/config -name $(TM_FILE) -print` \
613 `find ${srcdir}/config -name ${XM_FILE} -print` \
614 `find ${srcdir}/config -name ${NAT_FILE} -print` \
db7c818b
JK
615 `for i in yzzy ${DEPFILES}; do \
616 if [ x$$i != xyzzy ]; then \
617 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
618 fi; \
619 done` \
24c2857c 620 ${TAGFILES}
33cf356a
SG
621tags: TAGS
622
623# Making distributions of GDB and friends.
624
33cf356a
SG
625# Make a tar file containing the GDB directory of the distribution.
626gdb.tar.Z: force_update
627 $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
628 $(MAKE) $(MFLAGS) -f Makefile.in gdb-$(VERSION).tar.Z
629
2531303c
FF
630# Make a directory `proto-gdb.dir' that contains an image of the GDB
631# directory of the distribution, built up with symlinks. Note that this
632# make target is not directly referenced by any other rules in this makefile,
633# it is referenced by the makefile in the parent directory.
634make-proto-gdb.dir: force_update
635 $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
636 $(MAKE) $(MFLAGS) -f Makefile make-proto-gdb-1
637
638# Set up the GDB source directory for distribution, by building all files that
639# are products of other files.
640setup-to-dist: update-depend force_update
641 ../configure none
642 (cd doc; $(MAKE) $(MFLAGS) GDBvn.texi)
643 $(MAKE) $(MFLAGS) gdb.info
644 $(MAKE) $(MFLAGS) refcard.ps
22473f72
JG
645
646# Update the "depend" and "alldeps.mak" files in a source directory.
647# We update alldeps.mak first, since it is used to generate the list
648# of files to be checked for dependencies.
649update-depend: update-alldeps force_update
b3d4dd73 650 ../configure none -norecursion
33cf356a
SG
651 rm -f depend
652 $(MAKE) $(MFLAGS) depend
22473f72 653
2531303c
FF
654# Update the "alldeps.mak" file in a source directory.
655update-alldeps: force_update
656 ../configure none -norecursion
657 rm -f alldeps.mak
658 $(MAKE) $(MFLAGS) alldeps.mak
33cf356a
SG
659
660# Build a tar file from a proto-gdb.dir.
661gdb-$(VERSION).tar.Z: force_update
662 rm -f gdb.tar gdb-$(VERSION).tar.Z
2531303c 663 $(MAKE) $(MFLAGS) -f Makefile make-proto-gdb-1
33cf356a
SG
664 ln -s proto-gdb.dir $(DIST)
665 tar chf - $(DIST) | compress >gdb-$(VERSION).tar.Z
666 rm -rf $(DIST) proto-gdb.dir
667
668# Build a proto-gdb.dir after GDB has been set up for distribution.
669# This stuff must be run in `Makefile', not `Makefile.in`; we use the makefile
670# built in the setup-to-dist process, since it defines things like ALLCONFIG
671# and ALLDEPFILES, that we need.
672make-proto-gdb-1: ${TARFILES} ${TARDIRS} gdb.info
673 rm -rf proto-gdb.dir
674 mkdir proto-gdb.dir
2531303c
FF
675 rootme=`pwd`/ ; export rootme ; \
676 for i in `echo ${TARDIRS}`; do \
677 (cd proto-gdb.dir ; \
678 mkdir -p $$i; \
679 cd $$i; \
680 ln -s $${rootme}/$$i/* .; \
681 rm -rf SCCS CVS CVS.adm RCS config.status; \
682 if test -f Makefile.in; then rm Makefile; else true; fi;); \
683 done ; \
684 for i in `echo ${TARFILES}`; do \
685 (cd proto-gdb.dir ; \
686 dir=`dirname $$i`; \
687 if test -d $$dir; then true; else mkdir -p $$dir; fi; \
688 ln -s $${rootme}/$$i $$i;); \
689 done
33cf356a
SG
690 chmod og=u `find . -print`
691
97e72c06
FF
692# Build a proto-testsuite.dir.
693make-proto-testsuite.dir: force_update
694 rm -rf proto-testsuite.dir
695 mkdir proto-testsuite.dir
696 rootme=`pwd`/ ; export rootme ; \
697 for i in `find testsuite -type f -print`; do \
698 (cd proto-testsuite.dir ; \
699 dir=`dirname $$i`; \
700 if test -d $$dir; then true; else mkdir -p $$dir; fi; \
701 ln -s $${rootme}/$$i $$i;); \
702 done
703 find proto-testsuite.dir -name Makefile -exec rm {} \;
704 find proto-testsuite.dir -name config.status -exec rm {} \;
705
33cf356a 706clean:
4e772f44 707 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
33cf356a
SG
708 rm -f *.o ${ADD_FILES} *~
709 rm -f init.c version.c
2531303c 710 rm -f gdb core make.log
33cf356a 711 rm -f gdb[0-9]
33cf356a 712
e58de8a2 713distclean: clean c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS
4e772f44 714 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
33cf356a
SG
715 rm -f tm.h xm.h config.status
716 rm -f y.output yacc.acts yacc.tmp
717 rm -f ${TESTS} Makefile depend
33cf356a
SG
718
719realclean: clean
4e772f44 720 @$(MAKE) $(FLAGS_TO_PASS) DO=realclean "DODIRS=$(SUBDIRS)" subdir_do
e58de8a2 721 rm -f c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS
33cf356a
SG
722 rm -f tm.h xm.h config.status
723 rm -f Makefile depend
33cf356a
SG
724
725STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
726
727subdir_do: force
728 @for i in $(DODIRS); do \
729 if [ -d ./$$i ] ; then \
730 if (cd ./$$i; \
ef131e13 731 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
33cf356a
SG
732 else exit 1 ; fi ; \
733 else true ; fi ; \
734 done
d941d8c3 735
33cf356a
SG
736Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
737 $(SHELL) ./config.status
d941d8c3 738
33cf356a 739force:
d941d8c3 740
33cf356a
SG
741# Documentation!
742# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
2b21d8aa 743refcard.dvi:
ef131e13 744 ( cd ./doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS) )
33cf356a 745 mv ./doc/refcard.dvi .
d941d8c3 746
33cf356a 747# GDB QUICK REFERENCE (PostScript output, common PS fonts)
2b21d8aa 748refcard.ps:
ef131e13 749 ( cd ./doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS) )
33cf356a 750 mv ./doc/refcard.ps .
d941d8c3 751
33cf356a 752# GDB MANUAL: TeX dvi file
259d1dea 753gdb.dvi:
2b21d8aa 754 ( cd ./doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS) )
33cf356a 755 mv ./doc/gdb.dvi .
d941d8c3 756
33cf356a 757# GDB MANUAL: info file
259d1dea 758gdb.info:
24b88ae8 759 ( cd ./doc; $(MAKE) gdb.info $(FLAGS_TO_PASS) )
33cf356a 760 mv ./doc/gdb.info* .
d941d8c3 761
33cf356a
SG
762# Make copying.c from COPYING
763copying.c: ${srcdir}/COPYING ${srcdir}/copying.awk
764 awk -f ${srcdir}/copying.awk < ${srcdir}/COPYING > copying.c
d941d8c3 765
33cf356a
SG
766version.c: Makefile
767 echo 'char *version = "$(VERSION)";' >version.c
d941d8c3 768
33cf356a
SG
769# c-exp.tab.c is generated in target dir from c-exp.y if it doesn't exist
770# in srcdir, then compiled in target dir to c-exp.tab.o.
f4ed8840
JG
771# ././c-exp.tab.c is so the command argument will never match $(srcdir)/c-exp.y
772# (some "makes" rewrite the VPATH into command arguments if they match deps).
9aa44833
SG
773# Remove bogus decls for malloc/realloc/free which conflict with everything
774# else.
33cf356a 775c-exp.tab.o: c-exp.tab.c
f4ed8840 776c-exp.tab.c: $(srcdir)/c-exp.y $(srcdir)/Makefile.in
33cf356a 777 @echo 'Expect 4 shift/reduce conflicts.'
3717e95b 778 ${YACC} ${YFLAGS} $(srcdir)/c-exp.y
9aa44833
SG
779 -sed -e '/extern.*malloc/d' \
780 -e '/extern.*realloc/d' \
781 -e '/extern.*free/d' \
e58de8a2 782 -e '/include.*malloc.h/d' \
e35843d4
FF
783 -e 's/malloc/xmalloc/g' \
784 -e 's/realloc/xrealloc/g' \
f4ed8840 785 < y.tab.c > ././c-exp.tab.c
9aa44833 786 -rm y.tab.c
d941d8c3 787
e58de8a2
FF
788# ch-exp.tab.c is generated in target dir from ch-exp.y if it doesn't exist
789# in srcdir, then compiled in target dir to ch-exp.tab.o.
790# Remove bogus decls for malloc/realloc/free which conflict with everything
791# else.
792ch-exp.tab.o: ch-exp.tab.c
f4ed8840 793ch-exp.tab.c: $(srcdir)/ch-exp.y $(srcdir)/Makefile.in
3717e95b 794 ${YACC} ${YFLAGS} $(srcdir)/ch-exp.y
e58de8a2
FF
795 -sed -e '/extern.*malloc/d' \
796 -e '/extern.*realloc/d' \
797 -e '/extern.*free/d' \
798 -e '/include.*malloc.h/d' \
799 -e 's/malloc/xmalloc/g' \
800 -e 's/realloc/xrealloc/g' \
f4ed8840 801 < y.tab.c > ././ch-exp.tab.c
e58de8a2
FF
802 -rm y.tab.c
803
33cf356a
SG
804# m2-exp.tab.c is generated in target dir from m2-exp.y if it doesn't exist
805# in srcdir, then compiled in target dir to m2-exp.tab.o.
e58de8a2
FF
806# Remove bogus decls for malloc/realloc/free which conflict with everything
807# else.
33cf356a 808m2-exp.tab.o: m2-exp.tab.c
f4ed8840 809m2-exp.tab.c: $(srcdir)/m2-exp.y $(srcdir)/Makefile.in
3717e95b 810 ${YACC} ${YFLAGS} $(srcdir)/m2-exp.y
9aa44833
SG
811 -sed -e '/extern.*malloc/d' \
812 -e '/extern.*realloc/d' \
813 -e '/extern.*free/d' \
e58de8a2 814 -e '/include.*malloc.h/d' \
e35843d4
FF
815 -e 's/malloc/xmalloc/g' \
816 -e 's/realloc/xrealloc/g' \
f4ed8840 817 < y.tab.c > ././m2-exp.tab.c
9aa44833 818 -rm y.tab.c
d941d8c3 819
a679650f
FF
820
821main.o: ${srcdir}/main.c
822 ${CC} -c ${INTERNAL_CFLAGS} -I${READLINE_DIR} $<
823
33cf356a
SG
824# The symbol-file readers have dependencies on BFD header files.
825dbxread.o: ${srcdir}/dbxread.c
826 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/dbxread.c
d941d8c3 827
33cf356a
SG
828coffread.o: ${srcdir}/coffread.c
829 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/coffread.c
d941d8c3 830
33cf356a
SG
831mipsread.o: ${srcdir}/mipsread.c
832 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/mipsread.c
d941d8c3 833
33cf356a
SG
834elfread.o: ${srcdir}/elfread.c
835 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/elfread.c
d941d8c3 836
33cf356a
SG
837dwarfread.o: ${srcdir}/dwarfread.c
838 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/dwarfread.c
d941d8c3 839
a679650f
FF
840stabsread.o: ${srcdir}/stabsread.c
841 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/stabsread.c
842
f4ed8840 843# Used on RS/6000 native
33cf356a
SG
844xcoffread.o: ${srcdir}/xcoffread.c
845 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffread.c
d941d8c3 846
33cf356a
SG
847xcoffexec.o: ${srcdir}/xcoffexec.c
848 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffexec.c
d941d8c3 849
f4ed8840 850# Used on HP-PA native
2fcc38b8
FF
851paread.o: ${srcdir}/paread.c
852 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/paread.c
853
33cf356a 854# Drag in the files that are in another directory.
d941d8c3 855
33cf356a
SG
856xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c
857 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/vx-share/xdr_ld.c
d941d8c3 858
33cf356a
SG
859xdr_ptrace.o: ${srcdir}/vx-share/xdr_ptrace.c
860 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/vx-share/xdr_ptrace.c
d941d8c3 861
33cf356a
SG
862xdr_rdb.o: ${srcdir}/vx-share/xdr_rdb.c
863 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/vx-share/xdr_rdb.c
d941d8c3 864
33cf356a 865nindy.o: ${srcdir}/nindy-share/nindy.c
6a1f93f6
KR
866 ${CC} -c ${INTERNAL_CFLAGS} -DSTRIP='"$(tooldir)/bin/strip"' \
867 ${srcdir}/nindy-share/nindy.c
d941d8c3 868
33cf356a
SG
869Onindy.o: ${srcdir}/nindy-share/Onindy.c
870 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/nindy-share/Onindy.c
d941d8c3 871
33cf356a
SG
872ttybreak.o: ${srcdir}/nindy-share/ttybreak.c
873 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/nindy-share/ttybreak.c
d941d8c3 874
33cf356a
SG
875ttyflush.o: ${srcdir}/nindy-share/ttyflush.c
876 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/nindy-share/ttyflush.c
d941d8c3 877
6881fb6d
SG
878udr.o: ${srcdir}/29k-share/udi/udr.c
879 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/29k-share/udi/udr.c
880
881udip2soc.o: ${srcdir}/29k-share/udi/udip2soc.c
882 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/29k-share/udi/udip2soc.c
883
33cf356a
SG
884lint: $(LINTFILES)
885 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
886 `echo ${DEPFILES} | sed 's/\.o /\.c /g'
d941d8c3 887
33cf356a
SG
888gdb.cxref: $(SFILES)
889 cxref -I. $(SFILES) >gdb.cxref
d941d8c3 890
33cf356a 891force_update:
d941d8c3 892
33cf356a
SG
893# GNU Make has an annoying habit of putting *all* the Makefile variables
894# into the environment, unless you include this target as a circumvention.
895# Rumor is that this will be fixed (and this target can be removed)
896# in GNU Make 4.0.
897.NOEXPORT:
d941d8c3 898
aecc5459
ILT
899# GNU Make 3.63 has a different problem: it keeps tacking command line
900# overrides onto the definition of $(MAKE). This variable setting
901# will remove them.
902MAKEOVERRIDES=
903
58bb1e76
ILT
904## This is ugly, but I don't want GNU make to put these variables in
905## the environment. Older makes will see this as a set of targets
906## with no dependencies and no actions.
907unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
58bb1e76 908
33cf356a
SG
909# This is the end of "Makefile.in". When built into "Makefile"
910# by the configure script, two things are added below this point:
97e72c06 911# alldeps.mak -- definitions of all files that are used in
33cf356a
SG
912# host- or target-dependent configurations
913# depend -- what .o files depend on what .c and .h files,
914# for all configurations.
This page took 0.112235 seconds and 4 git commands to generate.