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