i386v host/target/native separation
[deliverable/binutils-gdb.git] / gdb / Makefile.in
CommitLineData
33cf356a
SG
1#Copyright (C) 1989, 1990, 1991, 1992 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
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
78BISON=yacc
79YACC=$(BISON)
33cf356a
SG
80
81# Documentation (gdb.dvi) needs either GNU m4 or SysV m4;
82# Berkeley/Sun don't have quite enough.
83#M4=/usr/5bin/m4
84M4=gm4
85
86# where to find texinfo; GDB dist should include a recent one
87TEXIDIR=${srcdir}/../texinfo/fsf
88
89# where to find makeinfo, preferably one designed for texinfo-2
90MAKEINFO=makeinfo
91
92# Set this up with gcc if you have gnu ld and the loader will print out
93# line numbers for undefinded refs.
94#CC-LD=gcc -static
95CC-LD=${CC}
96
97# Where is the "include" directory? Traditionally ../include or ./include
98INCLUDE_DIR = ${srcdir}/../include
99INCLUDE_DEP = $$(INCLUDE_DIR)
100
101# Where is the source dir for the MMALLOC library? Traditionally ../mmalloc
102# or ./mmalloc (When we want the binary library built from it, we use
103# ${MMALLOC_DIR}${subdir}.)
104# Note that mmalloc can still be used on systems without mmap().
105# To use your system malloc, comment out the following defines.
106MMALLOC_DIR = ${srcdir}/../mmalloc
107MMALLOC_DEP = $$(MMALLOC_DIR)
108MMALLOC_LIB = ./../mmalloc${subdir}/libmmalloc.a
109# To use your system malloc, uncomment MMALLOC_DISABLE.
110#MMALLOC_DISABLE = -DNO_MMALLOC
111# To use mmalloc but disable corruption checking, uncomment MMALLOC_CHECK
112#MMALLOC_CHECK = -DNO_MMALLOC_CHECK
113MMALLOC_CFLAGS = ${MMALLOC_CHECK} ${MMALLOC_DISABLE}
114
115# Where is the source dir for the BFD library? Traditionally ../bfd or ./bfd
116# (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
117BFD_DIR = ${srcdir}/../bfd
118BFD_DEP = $$(BFD_DIR)
119BFD_LIB = ./../bfd${subdir}/libbfd.a
120
121# Where is the source dir for the READLINE library? Traditionally in .. or .
122# (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
123READLINE_DIR = ${srcdir}/../readline
124READLINE_DEP = $$(READLINE_DIR)
125RL_LIB = ./../readline${subdir}/libreadline.a
126
127# All the includes used for CFLAGS and for lint.
128# -I. for config files.
129# -I${srcdir} possibly for regex.h also.
a679650f 130INCLUDE_CFLAGS = -I. -I${srcdir} -I$(INCLUDE_DIR)
33cf356a
SG
131
132# M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
133# from the config/ directory.
134GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
135#PROFILE_CFLAGS = -pg
136
137# CFLAGS is specifically reserved for setting from the command line
138# when running make. I.E. "make USER_CFLAGS=-Wmissing-prototypes".
139CFLAGS = -g
140# INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
141INTERNAL_CFLAGS = ${CFLAGS} ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MMALLOC_CFLAGS} ${INCLUDE_CFLAGS} ${USER_CFLAGS}
142# None of the things in CFLAGS will do any harm, and on some systems
d40309c7 143# (e.g. SunOS4) it is important to use the MH_CFLAGS.
33cf356a
SG
144LDFLAGS = $(CFLAGS)
145
146# Where is the "-liberty" library, containing getopt and obstack?
147LIBIBERTY_DIR = ${srcdir}/../libiberty
148LIBIBERTY = ./../libiberty${subdir}/libiberty.a
149
1e4f3c20
KR
150# Where is the "-lopcodes" library, with (some of) the opcode tables and
151# disassemblers?
152OPCODES = ./../opcodes${subdir}/libopcodes.a
153
33cf356a
SG
154# The config/mh-* file must define REGEX and REGEX1 on USG machines.
155# If your sysyem is missing alloca(), or, more likely, it's there but
156# it doesn't work, define ALLOCA & ALLOCA1 too.
33cf356a
SG
157
158# Libraries and corresponding dependencies for compiling gdb.
159# {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
160# TERMCAP comes after readline, since readline depends on it.
d40309c7
JG
161CLIBS = ${BFD_LIB} ${RL_LIB} ${TERMCAP} ${OPCODES} ${MMALLOC_LIB} ${LIBIBERTY} \
162 ${XM_CLIBS} ${TM_CLIBS} ${NAT_CLIBS}
163CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${NAT_CDEPS} \
072b552a 164 ${BFD_LIB} ${RL_LIB} ${OPCODES} ${MMALLOC_LIB} ${LIBIBERTY}
33cf356a 165
d40309c7
JG
166ADD_FILES = ${REGEX} ${ALLOCA} ${XM_ADD_FILES} ${TM_ADD_FILES} ${NAT_ADD_FILES}
167ADD_DEPS = ${REGEX1} ${ALLOCA1} ${XM_ADD_FILES} ${TM_ADD_FILES} ${NAT_ADD_FILES}
33cf356a 168
327f7197 169VERSION = 4.6.8
33cf356a
SG
170DIST=gdb
171
172LINT=/usr/5bin/lint
173LINTFLAGS= -I${BFD_DIR}
174
33cf356a
SG
175# Host and target-dependent makefile fragments come in here.
176####
177# End of host and target-dependent makefile fragments
178
ef131e13
JG
179FLAGS_TO_PASS = \
180 "against=$(against)" \
181 "AR=$(AR)" \
182 "AR_FLAGS=$(AR_FLAGS)" \
183 "CC=$(CC)" \
184 "CFLAGS=$(CFLAGS)" \
185 "RANLIB=$(RANLIB)" \
186 "MAKEINFO=$(MAKEINFO)" \
187 "INSTALL=$(INSTALL)" \
188 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
189 "INSTALL_DATA=$(INSTALL_DATA)" \
190 "BISON=$(BISON)"
191
33cf356a
SG
192# Source files in the main directory.
193# Files which are included via a config/* Makefile fragment
194# should *not* be specified here; they're in "ALLDEPFILES".
195SFILES_MAINDIR = \
2dbde378 196 blockframe.c breakpoint.c command.c core.c demangle.c \
33cf356a 197 environ.c eval.c expprint.c findvar.c infcmd.c inflow.c infrun.c \
7c173357 198 main.c printcmd.c gdbtypes.c \
33cf356a
SG
199 remote.c source.c stack.c symmisc.c symtab.c symfile.c \
200 utils.c valarith.c valops.c valprint.c values.c c-exp.y m2-exp.y \
b3d4dd73 201 mem-break.c target.c \
a679650f 202 dbxread.c coffread.c elfread.c dwarfread.c xcoffread.c stabsread.c \
33cf356a 203 ieee-float.c language.c parse.c buildsym.c objfiles.c \
781fa085 204 minsyms.c mipsread.c maint.c
33cf356a
SG
205
206# Source files in subdirectories (which will be handled separately by
207# 'make gdb.tar.Z').
208# Files which are included via a config/* Makefile fragment
209# should *not* be specified here; they're in "ALLDEPFILES".
210SFILES_SUBDIR = \
211 ${srcdir}/vx-share/dbgRpcLib.h \
212 ${srcdir}/vx-share/ptrace.h \
213 ${srcdir}/vx-share/reg.h \
214 ${srcdir}/vx-share/vxTypes.h \
215 ${srcdir}/vx-share/vxWorks.h \
216 ${srcdir}/vx-share/wait.h \
217 ${srcdir}/vx-share/xdr_ld.h \
218 ${srcdir}/vx-share/xdr_ptrace.h \
219 ${srcdir}/vx-share/xdr_rdb.h \
220 ${srcdir}/vx-share/xdr_regs.h \
221 ${srcdir}/nindy-share/b.out.h \
222 ${srcdir}/nindy-share/block_io.h \
223 ${srcdir}/nindy-share/coff.h \
224 ${srcdir}/nindy-share/demux.h \
225 ${srcdir}/nindy-share/env.h \
226 ${srcdir}/nindy-share/stop.h \
5413338b 227 ${srcdir}/nindy-share/ttycntl.h
33cf356a
SG
228
229# Non-source files in subdirs, that should go into gdb.tar.Z.
230NONSRC_SUBDIR = \
231 ${srcdir}/nindy-share/Makefile \
22473f72
JG
232 ${srcdir}/nindy-share/VERSION \
233 ${srcdir}/nindy-share/README \
234 ${srcdir}/vx-share/README
33cf356a
SG
235
236# All source files that go into linking GDB, except config-specified files.
237SFILES = $(SFILES_MAINDIR) $(SFILES_SUBDIR)
238
239# All source files that lint should look at
240LINTFILES = $(SFILES) $(YYFILES) init.c
241
242# Any additional files specified on these lines should also be added to
243# the OTHERS = definition below, so they go in the tar files.
244SFILES_STAND = $(SFILES) standalone.c
245SFILES_KGDB = $(SFILES) stuff.c kdb-start.c
246
247# Header files that are not named in config/* Makefile fragments go here.
3402b1cf 248HFILES= breakpoint.h buildsym.h call-cmds.h command.h defs.h \
b50a958c 249 environ.h expression.h frame.h gdbcmd.h gdbcore.h gdbtypes.h \
22473f72
JG
250 gdb-stabs.h ieee-float.h inferior.h language.h \
251 minimon.h objfiles.h parser-defs.h partial-stab.h \
252 serial.h signals.h solib.h symfile.h symtab.h stabsread.h \
253 target.h terminal.h xcoffsolib.h value.h \
254 tm-68k.h tm-hppa.h tm-i960.h tm-sparc.h tm-sunos.h tm-sysv4.h \
e6c61372 255 xm-m68k.h xm-sparc.h xm-sysv4.h xm-vax.h \
47b7176b 256 nm-irix3.h nm-irix4.h nm-mips.h nm-rs6000.h nm-sun2.h nm-sun3.h \
a113beac 257 nm-sun4os4.h nm-trash.h nm-news.h nm-ultra3.h nm-m88k.h \
c7c94073 258 nm-i386mach.h nm-sun386.h nm-linux.h nm-i386v.h
33cf356a 259
22473f72 260REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
33cf356a
SG
261
262POSSLIBS_MAINDIR = regex.c regex.h alloca.c
263POSSLIBS = $(POSSLIBS_MAINDIR)
264
265TESTS = testbpt.c testfun.c testrec.c testreg.c testregs.c
266
267OTHERS = Makefile.in depend alldeps.mak createtags munch configure.in \
268 ChangeLog ChangeLog-9091 ChangeLog-3.x gdb.1 refcard.ps \
22473f72 269 README TODO TAGS NEWS Projects \
33cf356a
SG
270 .gdbinit COPYING $(YYFILES) \
271 copying.c Convex.notes copying.awk \
272 saber.suppress standalone.c stuff.c kdb-start.c \
cdaa27e9 273 putenv.c gcc.patch
33cf356a
SG
274
275# Subdirectories of gdb, which should be included in their entirety in
276# gdb-xxx.tar.Z:
277TARDIRS = doc # tests
278
279# GDB "info" files, which should be included in their entirety
280INFOFILES = gdb.info*
281
d40309c7 282DEPFILES= ${TDEPFILES} ${XDEPFILES} ${NATDEPFILES}
33cf356a
SG
283
284SOURCES=$(SFILES) $(ALLDEPFILES) $(YYFILES)
285TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
286TAGFILES_MAINDIR = $(SFILES_MAINDIR) $(ALLDEPFILES_MAINDIR) \
287 ${HFILES} ${ALLPARAM} ${POSSLIBS_MAINDIR}
288TARFILES = ${TAGFILES_MAINDIR} ${OTHERS} ${REMOTE_EXAMPLES}
289
327f7197 290OBS = version.o main.o blockframe.o breakpoint.o findvar.o stack.o source.o \
33cf356a 291 values.o eval.o valops.o valarith.o valprint.o printcmd.o \
17cb669f 292 symtab.o symfile.o symmisc.o infcmd.o infrun.o remote.o \
327f7197 293 command.o utils.o expprint.o environ.o gdbtypes.o \
3402b1cf 294 copying.o $(DEPFILES) mem-break.o target.o \
b3d4dd73 295 ieee-float.o putenv.o parse.o language.o $(YYOBJ) \
781fa085 296 buildsym.o objfiles.o minsyms.o maint.o demangle.o \
a679650f 297 dbxread.o coffread.o elfread.o dwarfread.o xcoffread.o mipsread.o \
b3d4dd73 298 stabsread.o core.o
33cf356a
SG
299
300RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES)
301
c9c23412 302TSOBS = inflow.o
33cf356a
SG
303
304NTSOBS = standalone.o
305
306TSSTART = /lib/crt0.o
307
308NTSSTART = kdb-start.o
309
781fa085 310SUBDIRS = doc
33cf356a
SG
311
312# For now, shortcut the "configure GDB for fewer languages" stuff.
313YYFILES = c-exp.tab.c m2-exp.tab.c
314YYOBJ = c-exp.tab.o m2-exp.tab.o
315
316# Prevent Sun make from putting in the machine type. Setting
317# TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
318.c.o:
319 ${CC} -c ${INTERNAL_CFLAGS} $<
320
321all: gdb
ef131e13 322 $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
4db3902a 323check:
33cf356a 324info: force
ef131e13 325 $(MAKE) subdir_do DO=info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
33cf356a 326install-info: force
ef131e13 327 $(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
33cf356a 328clean-info: force
ef131e13 329 $(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
33cf356a
SG
330
331gdb.z:gdb.1
332 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
333 pack gdb.t ; rm -f gdb.t
334 mv gdb.t.z gdb.z
335
336install: gdb
ef131e13
JG
337 -parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
338 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
339 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
340 -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
341 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
342 -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
b68b44fa
ILT
343 -n=`t='$(program_transform_name)'; echo gdb | sed -e "" $$t`; \
344 $(INSTALL_PROGRAM) gdb $(bindir)/$$n; \
345 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$n.1
33cf356a 346 $(M_INSTALL)
ef131e13 347 $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
33cf356a
SG
348
349init.c: $(srcdir)/munch $(OBS) $(TSOBS)
350 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c
351
352gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o
353 ${CC-LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o gdb \
354 init.o $(OBS) $(TSOBS) $(ADD_FILES) $(CLIBS) $(LOADLIBES)
355
356saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
357 #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS
358 #load ./init.c $(SFILES)
359 #unload ${srcdir}/c-exp.y ${srcdir}/m2-exp.y ${srcdir}/vx-share/*.h
360 #unload ${srcdir}/nindy-share/[A-Z]*
361 #load c-exp.tab.c m2-exp.tab.c
362 #load copying.c version.c
1e4f3c20 363 #load ../opcodes/libopcodes.a
33cf356a
SG
364 #load ../libiberty/libiberty.a
365 #load ../bfd/libbfd.a
366 #load ../readline/libreadline.a
367 #load ../mmalloc/libmmalloc.a
368 #load -ltermcap
369 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
370 echo "Load .c corresponding to:" $(DEPFILES)
371
372
373# This is useful when debugging GDB, because some Unix's don't let you run GDB
374# on itself without copying the executable. So "make gdb1" will make
375# gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
376# Removing gdb1 before the copy is the right thing if gdb1 is open
377# in another process.
378gdb1: gdb
379 rm -f gdb1
380 cp gdb gdb1
381
382# This is a remote stub which runs under unix and starts up an
383# inferior process. This is at least useful for debugging GDB's
384# remote support.
385rapp: $(RAPP_OBS)
386 rm -f rapp_init.c
387 ${srcdir}/munch ${MUNCH_DEFINE} ${RAPP_OBS} > rapp_init.c
388 ${CC-LD} $(LDFLAGS) -o $@ rapp_init.c $(RAPP_OBS)
389
390# Support for building Makefile out of configured pieces, automatically
391# generated dependencies, etc. alldeps.mak is a file that contains
392# "make" variable definitions for all ALLDEPFILES, ALLDEPFILES_MAINDIR,
393# ALLDEPFILES_SUBDIR, ALLPARAM, and ALLCONFIG, all cadged from the current
394# contents of the config subdirectory.
395
396alldeps.mak: ${srcdir}/config
397 rm -f alldeps.mak alldeps.tmp allparam.tmp allconfig.tmp
398 for i in `ls -d ${srcdir}/config/*.m[ht]` ; do \
399 echo $$i >>allconfig.tmp; \
400 awk <$$i ' \
d40309c7 401 $$1 == "TDEPFILES=" || $$1 == "XDEPFILES=" \
a1096574 402 || $$1 == "NATDEPFILES=" { \
33cf356a
SG
403 for (i = 2; i <= NF; i++) \
404 print $$i >> "alldeps.tmp" ; \
405 } \
d40309c7 406 $$1 == "TM_FILE=" || $$1 == "XM_FILE=" || $$1 == "NAT_FILE" { \
33cf356a
SG
407 print $$2 >> "allparam.tmp" }' ; \
408 done
409 sort <alldeps.tmp | uniq | \
410 sed -e 's/arm-convert.o/arm-convert.s/' \
411 -e 's!^Onindy.o!nindy-share/Onindy.c!' \
412 -e 's!^nindy.o!nindy-share/nindy.c!' \
413 -e 's!ttybreak.o!nindy-share/ttybreak.c!' \
414 -e 's!ttyflush.o!nindy-share/ttyflush.c!' \
415 -e 's!xdr_ld.o!vx-share/xdr_ld.c!' \
416 -e 's!xdr_ptrace.o!vx-share/xdr_ptrace.c!' \
417 -e 's!xdr_rdb.o!vx-share/xdr_rdb.c!' \
418 -e 's!xdr_regs.o!vx-share/xdr_regs.c!' \
419 -e 's/\.o/.c/' \
420 >alldeps2.tmp
421 echo '# Start of "alldeps.mak" definitions' \
422 >>alldeps.mak;
423 echo 'ALLDEPFILES = $$(ALLDEPFILES_MAINDIR) $$(ALLDEPFILES_SUBDIR)' \
424 >>alldeps.mak;
425 grep -v / alldeps2.tmp | \
426 awk 'BEGIN {printf "ALLDEPFILES_MAINDIR="} \
427 NR == 0 {printf $$0;} \
428 NR != 0 {printf "\\\n" $$0} \
429 END {printf "\n\n"}' >>alldeps.mak;
430 grep / alldeps2.tmp | \
431 awk 'BEGIN {printf "ALLDEPFILES_SUBDIR="} \
432 NR == 0 {printf $$0;} \
433 NR != 0 {printf "\\\n" $$0} \
434 END {printf "\n\n"}' >>alldeps.mak;
435 sort <allparam.tmp | uniq | awk 'BEGIN {printf "ALLPARAM="} \
436 NR == 0 {printf $$0;} \
437 NR != 0 {printf "\\\n" $$0} \
438 END {printf "\n\n"}' >>alldeps.mak;
439 sort <allconfig.tmp | uniq | awk 'BEGIN {printf "ALLCONFIG="} \
440 NR == 0 {printf $$0;} \
441 NR != 0 {printf "\\\n" $$0} \
442 END {printf "\n\n"}' >>alldeps.mak;
443 echo '# End of "alldeps.mak" definitions' \
444 >>alldeps.mak;
445 rm -f alldeps.tmp alldeps2.tmp allparam.tmp allconfig.tmp
446
447# The sed script makes everything which depends on {x,t}m.h depend on
448# config.status as well, in case someone reconfigures gdb out from
449# under an already compiled gdb.
450depend: $(SOURCES) Makefile.in
451 @echo Ignore errors about non-existent system-supplied include files
452 @echo for systems other than the one you are using.
453 @echo Also ignore parse errors in valops.c, and any errors in
454 @echo arm-convert.s.
455 touch xm.h tm.h
456 -$(GCC) -MM -nostdinc -I/usr/include $(CFLAGS) -I$(BFD_DIR) \
3402b1cf
PB
457 -I${READLINE_DIR} $(INCLUDE_CFLAGS) \
458 `ls $(SOURCES) | grep -v '\.[hy]$$' | \
33cf356a
SG
459 sort -u` >depend.tmp
460# If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except
461# for xm.h and tm.h. This allows the same "depend" file to be used
462# by the various subdirectories.
463 if [ "${srcdir}" = "." ] ; then \
464 <depend.tmp sed \
465 -e 's; ./xm.h; xm.h;g' \
466 -e 's; ./tm.h; tm.h;g' \
467 -e 's; \./; $${srcdir}/;g' \
468 -e 's; vx-share/; $${srcdir}/vx-share/;g' \
469 -e 's; nindy-share/; $${srcdir}/nindy-share/;g' \
470 >depend.tm2; \
471 rm depend.tmp; \
472 mv depend.tm2 depend.tmp; \
473 fi
474 <depend.tmp sed \
475 -e 's; [xt]m.h;& config.status;g' \
476 -e 's; $(INCLUDE_DIR)/; $(INCLUDE_DEP)/;g' \
477 -e 's; $(READLINE_DIR)/; $(READLINE_DEP)/;g' \
478 -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g' \
479 -e 's; ./xm.h; xm.h config.status;g' \
480 -e 's; ./tm.h; tm.h config.status;g' \
481 >depend
482 rm depend.tmp
483
484config.status:
485 @echo "You must configure gdb. Look at the README file for details."
486 @false
487
ef131e13
JG
488# This checks the configure.in file versus the config/ directory.
489config-check: config-check-hosts config-check-targets
490config-check-hosts:
491 grep gdb_host= ${srcdir}/configure.in | \
492 sed -e 's/.*gdb_host=//' -e 's/ ;;$$/.mh/' | sort -u >HOSTconf.o
493 (cd ${srcdir}/config; ls *.mh) >HOSTdir.o
494 diff -u HOSTconf.o HOSTdir.o
495
496config-check-targets:
497 grep gdb_target= ${srcdir}/configure.in | \
498 sed -e 's/.*gdb_target=//' -e 's/ ;;$$/.mh/' | sort -u >TARGconf.o
499 (cd ${srcdir}/config; ls *.mt) >TARGdir.o
500 diff -u HOSTconf.o HOSTdir.o
501
33cf356a
SG
502# These are not generated by "make depend" because they only are there
503# for some machines.
504# But these rules don't do what we want; we want to hack the foo.o: tm.h
505# dependency to do the right thing.
506tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-68k.h
507tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-68k.h
508xm-news1000.h: xm-news.h
509xm-i386-sv32.h: xm-i386.h
510tm-i386gas.h: tm-i386.h
511xm-sun4os4.h: xm-sparc.h
512tm-sun4os4.h: tm-sparc.h
513xm-vaxult.h: xm-vax.h
514xm-vaxbsd.h: xm-vax.h
515
516kdb: $(NTSSTART) $(OBS) $(NTSOBS) ${ADD_DEPS} ${CDEPS}
517 rm -f init.c
518 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(NTSOBS) > init.c
519 $(CC) $(LDFLAGS) -c init.c $(CLIBS)
520 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
521 -lc $(CLIBS)
522
523# Put the proper machine-specific files first.
524# createtags will edit the .o in DEPFILES into .c
525TAGS: ${TAGFILES}
d40309c7
JG
526 $(srcdir)/createtags $(TM_FILE) ${XM_FILE} ${NAT_FILE} \
527 $(DEPFILES) ${TAGFILES}
33cf356a
SG
528tags: TAGS
529
530# Making distributions of GDB and friends.
531
532# Make a directory `proto-gdb.dir' that contains an image of the GDB
533# directory of the distribution, built up with symlinks.
534make-proto-gdb.dir: force_update
535 $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
536 $(MAKE) $(MFLAGS) -f Makefile make-proto-gdb-1
537
538# Make a tar file containing the GDB directory of the distribution.
539gdb.tar.Z: force_update
540 $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
541 $(MAKE) $(MFLAGS) -f Makefile.in gdb-$(VERSION).tar.Z
542
22473f72
JG
543# Update the "alldeps.mak" file in a source directory.
544update-alldeps: force_update
b3d4dd73 545 ../configure none -norecursion
33cf356a
SG
546 rm -f alldeps.mak
547 $(MAKE) $(MFLAGS) alldeps.mak
22473f72
JG
548
549# Update the "depend" and "alldeps.mak" files in a source directory.
550# We update alldeps.mak first, since it is used to generate the list
551# of files to be checked for dependencies.
552update-depend: update-alldeps force_update
b3d4dd73 553 ../configure none -norecursion
33cf356a
SG
554 rm -f depend
555 $(MAKE) $(MFLAGS) depend
22473f72
JG
556
557# Set up the GDB source directory for distribution, by building all files that
558# are products of other files.
559setup-to-dist: update-depend force_update
0da70124 560 ../configure none
33cf356a
SG
561 (cd doc; $(MAKE) $(MFLAGS) gdbVN.m4)
562 $(MAKE) $(MFLAGS) gdb.info
563 $(MAKE) $(MFLAGS) refcard.ps
564
565# Build a tar file from a proto-gdb.dir.
566gdb-$(VERSION).tar.Z: force_update
567 rm -f gdb.tar gdb-$(VERSION).tar.Z
568 $(MAKE) $(MFLAGS) -f Makefile make-proto-gdb-1
569 ln -s proto-gdb.dir $(DIST)
570 tar chf - $(DIST) | compress >gdb-$(VERSION).tar.Z
571 rm -rf $(DIST) proto-gdb.dir
572
573# Build a proto-gdb.dir after GDB has been set up for distribution.
574# This stuff must be run in `Makefile', not `Makefile.in`; we use the makefile
575# built in the setup-to-dist process, since it defines things like ALLCONFIG
576# and ALLDEPFILES, that we need.
577make-proto-gdb-1: ${TARFILES} ${TARDIRS} gdb.info
578 rm -rf proto-gdb.dir
579 mkdir proto-gdb.dir
580 cd proto-gdb.dir ; for i in ${TARFILES} ; do ln -s ../$$i . ; done
581 cd proto-gdb.dir ; ln -s ../${INFOFILES} .
582 cd proto-gdb.dir ; for i in ${TARDIRS}; do \
583 mkdir $$i; cd $$i; \
584 ln -s ../../$$i/* .; \
585 rm -rf SCCS CVS.adm RCS config.status; \
586 if test -f Makefile.in; then rm Makefile; else true; fi; done
587 mkdir proto-gdb.dir/config
588 cd proto-gdb.dir/config ; \
589 for i in $(ALLCONFIG) ; do ln -s ../../$$i ../$$i ; done
5413338b 590 mkdir proto-gdb.dir/vx-share proto-gdb.dir/nindy-share
33cf356a
SG
591 cd proto-gdb.dir/config ; \
592 for i in $(SFILES_SUBDIR) $(NONSRC_SUBDIR) $(ALLDEPFILES_SUBDIR); \
593 do ln -s ../../$$i ../$$i ; done
594 chmod og=u `find . -print`
595
596clean:
597 rm -f *.o ${ADD_FILES} *~
598 rm -f init.c version.c
599 rm -f gdb core gdb.tar gdb.tar.Z make.log
600 rm -f gdb[0-9]
ef131e13 601 @$(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
33cf356a
SG
602
603distclean: clean c-exp.tab.c m2-exp.tab.c TAGS
604 rm -f tm.h xm.h config.status
605 rm -f y.output yacc.acts yacc.tmp
606 rm -f ${TESTS} Makefile depend
ef131e13 607 @$(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
33cf356a
SG
608
609realclean: clean
610 rm -f c-exp.tab.c m2-exp.tab.c TAGS
611 rm -f tm.h xm.h config.status
612 rm -f Makefile depend
ef131e13 613 @$(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
33cf356a
SG
614
615STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
616
617subdir_do: force
618 @for i in $(DODIRS); do \
619 if [ -d ./$$i ] ; then \
620 if (cd ./$$i; \
ef131e13 621 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
33cf356a
SG
622 else exit 1 ; fi ; \
623 else true ; fi ; \
624 done
d941d8c3 625
33cf356a
SG
626Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
627 $(SHELL) ./config.status
d941d8c3 628
33cf356a 629force:
d941d8c3 630
33cf356a
SG
631# Documentation!
632# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
633refcard.dvi: $(srcdir)/doc/refcard.tex
ef131e13 634 ( cd ./doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS) )
33cf356a 635 mv ./doc/refcard.dvi .
d941d8c3 636
33cf356a
SG
637# GDB QUICK REFERENCE (PostScript output, common PS fonts)
638refcard.ps: $(srcdir)/doc/refcard.tex
ef131e13 639 ( cd ./doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS) )
33cf356a 640 mv ./doc/refcard.ps .
d941d8c3 641
33cf356a
SG
642# GDB MANUAL: TeX dvi file
643gdb.dvi: ./doc/gdb-all.texi
ef131e13 644 ( cd ./doc; $(MAKE) M4=$(M4) gdb.dvi $(FLAGS_TO_PASS) )
33cf356a 645 mv ./doc/gdb.dvi .
d941d8c3 646
33cf356a
SG
647# GDB MANUAL: info file
648gdb.info: ./doc/gdb-all.texi
ef131e13 649 ( cd ./doc; $(MAKE) M4=$(M4) gdb.info $(FLAGS_TO_PASS) )
33cf356a 650 mv ./doc/gdb.info* .
d941d8c3 651
33cf356a 652./doc/gdb-all.texi:
8c095066 653 (cd ./doc; $(MAKE) M4=$(M4) gdb-all.texi $(FLAGS_TO_PASS) )
d941d8c3 654
33cf356a
SG
655# Make copying.c from COPYING
656copying.c: ${srcdir}/COPYING ${srcdir}/copying.awk
657 awk -f ${srcdir}/copying.awk < ${srcdir}/COPYING > copying.c
d941d8c3 658
33cf356a
SG
659version.c: Makefile
660 echo 'char *version = "$(VERSION)";' >version.c
d941d8c3 661
33cf356a
SG
662# c-exp.tab.c is generated in target dir from c-exp.y if it doesn't exist
663# in srcdir, then compiled in target dir to c-exp.tab.o.
9aa44833
SG
664# Remove bogus decls for malloc/realloc/free which conflict with everything
665# else.
33cf356a
SG
666c-exp.tab.o: c-exp.tab.c
667c-exp.tab.c: $(srcdir)/c-exp.y
668 @echo 'Expect 4 shift/reduce conflicts.'
669 ${YACC} $(srcdir)/c-exp.y
9aa44833
SG
670 -sed -e '/extern.*malloc/d' \
671 -e '/extern.*realloc/d' \
672 -e '/extern.*free/d' \
673 < y.tab.c > c-exp.tab.c
674 -rm y.tab.c
d941d8c3 675
33cf356a
SG
676# m2-exp.tab.c is generated in target dir from m2-exp.y if it doesn't exist
677# in srcdir, then compiled in target dir to m2-exp.tab.o.
678m2-exp.tab.o: m2-exp.tab.c
679m2-exp.tab.c: $(srcdir)/m2-exp.y
680 ${YACC} $(srcdir)/m2-exp.y
9aa44833
SG
681 -sed -e '/extern.*malloc/d' \
682 -e '/extern.*realloc/d' \
683 -e '/extern.*free/d' \
684 < y.tab.c > m2-exp.tab.c
685 -rm y.tab.c
d941d8c3 686
a679650f
FF
687
688main.o: ${srcdir}/main.c
689 ${CC} -c ${INTERNAL_CFLAGS} -I${READLINE_DIR} $<
690
33cf356a
SG
691# The symbol-file readers have dependencies on BFD header files.
692dbxread.o: ${srcdir}/dbxread.c
693 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/dbxread.c
d941d8c3 694
33cf356a
SG
695coffread.o: ${srcdir}/coffread.c
696 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/coffread.c
d941d8c3 697
33cf356a
SG
698mipsread.o: ${srcdir}/mipsread.c
699 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/mipsread.c
d941d8c3 700
33cf356a
SG
701elfread.o: ${srcdir}/elfread.c
702 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/elfread.c
d941d8c3 703
33cf356a
SG
704dwarfread.o: ${srcdir}/dwarfread.c
705 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/dwarfread.c
d941d8c3 706
a679650f
FF
707stabsread.o: ${srcdir}/stabsread.c
708 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/stabsread.c
709
33cf356a
SG
710xcoffread.o: ${srcdir}/xcoffread.c
711 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffread.c
d941d8c3 712
33cf356a
SG
713xcoffexec.o: ${srcdir}/xcoffexec.c
714 ${CC} -c ${INTERNAL_CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffexec.c
d941d8c3 715
33cf356a 716# Drag in the files that are in another directory.
d941d8c3 717
33cf356a
SG
718xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c
719 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/vx-share/xdr_ld.c
d941d8c3 720
33cf356a
SG
721xdr_ptrace.o: ${srcdir}/vx-share/xdr_ptrace.c
722 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/vx-share/xdr_ptrace.c
d941d8c3 723
33cf356a
SG
724xdr_rdb.o: ${srcdir}/vx-share/xdr_rdb.c
725 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/vx-share/xdr_rdb.c
d941d8c3 726
33cf356a
SG
727xdr_regs.o: ${srcdir}/vx-share/xdr_regs.c
728 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/vx-share/xdr_regs.c
d941d8c3 729
33cf356a 730nindy.o: ${srcdir}/nindy-share/nindy.c
6a1f93f6
KR
731 ${CC} -c ${INTERNAL_CFLAGS} -DSTRIP='"$(tooldir)/bin/strip"' \
732 ${srcdir}/nindy-share/nindy.c
d941d8c3 733
33cf356a
SG
734Onindy.o: ${srcdir}/nindy-share/Onindy.c
735 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/nindy-share/Onindy.c
d941d8c3 736
33cf356a
SG
737ttybreak.o: ${srcdir}/nindy-share/ttybreak.c
738 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/nindy-share/ttybreak.c
d941d8c3 739
33cf356a
SG
740ttyflush.o: ${srcdir}/nindy-share/ttyflush.c
741 ${CC} -c ${INTERNAL_CFLAGS} ${srcdir}/nindy-share/ttyflush.c
d941d8c3 742
33cf356a
SG
743lint: $(LINTFILES)
744 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
745 `echo ${DEPFILES} | sed 's/\.o /\.c /g'
d941d8c3 746
33cf356a
SG
747gdb.cxref: $(SFILES)
748 cxref -I. $(SFILES) >gdb.cxref
d941d8c3 749
33cf356a 750force_update:
d941d8c3 751
33cf356a
SG
752# GNU Make has an annoying habit of putting *all* the Makefile variables
753# into the environment, unless you include this target as a circumvention.
754# Rumor is that this will be fixed (and this target can be removed)
755# in GNU Make 4.0.
756.NOEXPORT:
d941d8c3 757
33cf356a
SG
758# This is the end of "Makefile.in". When built into "Makefile"
759# by the configure script, two things are added below this point:
760# alldeps.mak -- defintions of all files that are used in
761# host- or target-dependent configurations
762# depend -- what .o files depend on what .c and .h files,
763# for all configurations.
3e5afc2c
RP
764
765
This page took 0.08176 seconds and 4 git commands to generate.