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