*** empty log message ***
[external/binutils.git] / gdb / Makefile.in
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
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 bindir = $(prefix)/bin
22 datadir = $(prefix)/lib
23 libdir = $(prefix)/lib
24 mandir = $(datadir)/man
25 man1dir = $(mandir)/man1
26 man2dir = $(mandir)/man2
27 man3dir = $(mandir)/man3
28 man4dir = $(mandir)/man4
29 man5dir = $(mandir)/man5
30 man6dir = $(mandir)/man6
31 man7dir = $(mandir)/man7
32 man8dir = $(mandir)/man8
33 man9dir = $(mandir)/man9
34 infodir = $(datadir)/info
35 includedir = $(prefix)/include
36 docdir = $(datadir)/doc
37
38 SHELL = /bin/sh
39
40 INSTALL = install -c
41 INSTALL_PROGRAM = $(INSTALL)
42 INSTALL_DATA = $(INSTALL)
43
44 AR = ar
45 AR_FLAGS = qv
46 RANLIB = ranlib
47
48 # Flags that describe where you can find the termcap library.
49 # This can be overridden in the host Makefile fragment file.
50 TERMCAP = -ltermcap
51
52 #### Host, target, and site specific Makefile fragments come in here.
53 ###
54
55 # Host and target-dependent makefile fragments come in here.
56 ####
57 # End of host and target-dependent makefile fragments
58
59 # System V: If you compile gdb with a compiler which uses the coff
60 # encapsulation feature (this is a function of the compiler used, NOT
61 # of the m-?.h file selected by config.gdb), you must make sure that
62 # the GNU nm is the one that is used by munch.
63
64 # If you are compiling with GCC, make sure that either 1) You use the
65 # -traditional flag, or 2) You have the fixed include files where GCC
66 # can reach them.  Otherwise the ioctl calls in inflow.c
67 # will be incorrectly compiled.  The "fixincludes" script in the gcc
68 # distribution will fix your include files up.
69 #CC=cc
70 #CC=gcc -traditional
71 GCC=gcc
72
73 # Directory containing source files.  Don't clean up the spacing,
74 # this exact string is matched for by the "configure" script.
75 srcdir = .
76
77 # It is also possible that you will need to add -I/usr/include/sys to the
78 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which 
79 # is where it should be according to Posix).
80
81 BISON=bison -y
82 BISONFLAGS=
83 YACC=$(BISON) $(BISONFLAGS)
84 # YACC=yacc
85 MAKE=make
86
87 # Documentation (gdb.dvi) needs either GNU m4 or SysV m4; 
88 # Berkeley/Sun don't have quite enough. 
89 #M4=/usr/5bin/m4
90 M4=gm4
91
92 # where to find texinfo; GDB dist should include a recent one
93 TEXIDIR=${srcdir}/../texinfo/fsf
94
95 # where to find makeinfo, preferably one designed for texinfo-2
96 MAKEINFO=makeinfo
97
98 # Set this up with gcc if you have gnu ld and the loader will print out
99 # line numbers for undefinded refs.
100 #CC-LD=gcc -static
101 CC-LD=${CC}
102
103 # define this to be "gmalloc.o" if you want to use the gnu malloc routine
104 # (useful for debugging memory allocation problems in gdb).  To use your
105 # system malloc, uncomment the following two lines.
106 #GNU_MALLOC =
107 #MALLOC_CFLAGS = -DNO_MALLOC_CHECK
108 GNU_MALLOC = gmalloc.o mcheck.o mtrace.o
109 MALLOC_CFLAGS =
110
111 # Where is the "include" directory?  Traditionally ../include or ./include
112 INCLUDE_DIR =  ${srcdir}/../include
113 INCLUDE_DEP = $$(INCLUDE_DIR)
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 = $(unsubdir)/../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 = $(unsubdir)/../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) -I$(READLINE_DIR) -I${srcdir}/vx-share
131
132 # {X,T}M_CFLAGS, if defined, has system-dependent CFLAGS.
133 # CFLAGS for GDB
134 MINUS_G=-g
135 GLOBAL_CFLAGS = ${MINUS_G} ${TM_CFLAGS} ${XM_CFLAGS}
136 #PROFILE_CFLAGS = -pg
137
138 # CFLAGS is the aggregate of several individual *_CFLAGS macros.
139 # USER_CFLAGS is specifically reserved for setting from the command line
140 # when running make.  I.E.  "make USER_CFLAGS=-Wmissing-prototypes".
141 CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_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 M_CFLAGS.
144 LDFLAGS = $(CFLAGS)
145
146 # Where is the "-liberty" library, containing getopt and obstack?
147 LIBIBERTY_DIR = ${srcdir}/../libiberty
148 LIBIBERTY = $(unsubdir)/../libiberty${subdir}/libiberty.a
149
150 # The config/mh-* file must define REGEX and REGEX1 on USG machines.
151 # If your sysyem is missing alloca(), or, more likely, it's there but
152 # it doesn't work, define ALLOCA & ALLOCA1 too.
153 # If your system is missing putenv(), add putenv.c to XM_ADD_FILES.
154
155 # Libraries and corresponding dependencies for compiling gdb.
156 # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
157 # TERMCAP comes after readline, since readline depends on it.
158 CLIBS = ${BFD_LIB}  ${RL_LIB} ${TERMCAP} ${LIBIBERTY} ${XM_CLIBS} ${TM_CLIBS}
159 CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_LIB} ${LIBIBERTY} ${RL_LIB}
160
161 ADD_FILES = ${REGEX} ${ALLOCA}  ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES}
162 ADD_DEPS = ${REGEX1} ${ALLOCA1} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES}
163
164 VERSION = 4.3.2
165 DIST=gdb
166
167 LINT=/usr/5bin/lint
168 LINTFLAGS= -I${BFD_DIR}
169
170 # Source files in the main directory.
171 # Files which are included via a config/* Makefile fragment
172 # should *not* be specified here; they're in "ALLDEPFILES".
173 SFILES_MAINDIR = \
174          blockframe.c breakpoint.c command.c core.c \
175          environ.c eval.c expprint.c findvar.c infcmd.c inflow.c infrun.c \
176          main.c printcmd.c \
177          remote.c source.c stack.c symmisc.c symtab.c symfile.c \
178          utils.c valarith.c valops.c valprint.c values.c c-exp.y m2-exp.y \
179          signame.c cplus-dem.c mem-break.c target.c inftarg.c \
180          dbxread.c coffread.c elfread.c dwarfread.c xcoffread.c \
181          ieee-float.c language.c parse.c buildsym.c
182
183 # Source files in subdirectories (which will be handled separately by
184 #  'make gdb.tar.Z').
185 # Files which are included via a config/* Makefile fragment
186 # should *not* be specified here; they're in "ALLDEPFILES".
187 SFILES_SUBDIR = \
188          ${srcdir}/vx-share/dbgRpcLib.h \
189          ${srcdir}/vx-share/ptrace.h \
190          ${srcdir}/vx-share/reg.h \
191          ${srcdir}/vx-share/vxTypes.h \
192          ${srcdir}/vx-share/vxWorks.h \
193          ${srcdir}/vx-share/wait.h \
194          ${srcdir}/vx-share/xdr_ld.h \
195          ${srcdir}/vx-share/xdr_ptrace.h \
196          ${srcdir}/vx-share/xdr_rdb.h \
197          ${srcdir}/vx-share/xdr_regs.h \
198          ${srcdir}/nindy-share/b.out.h \
199          ${srcdir}/nindy-share/block_io.h \
200          ${srcdir}/nindy-share/coff.h \
201          ${srcdir}/nindy-share/demux.h \
202          ${srcdir}/nindy-share/env.h \
203          ${srcdir}/nindy-share/stop.h \
204          ${srcdir}/nindy-share/ttycntl.h
205
206 # Non-source files in subdirs, that should go into gdb.tar.Z.
207 NONSRC_SUBDIR = \
208          ${srcdir}/nindy-share/Makefile \
209          ${srcdir}/nindy-share/VERSION
210
211 # All source files that go into linking GDB, except config-specified files.
212 SFILES = $(SFILES_MAINDIR) $(SFILES_SUBDIR)
213
214 # All source files that lint should look at
215 LINTFILES = $(SFILES) $(YYFILES) init.c
216
217 # Any additional files specified on these lines should also be added to
218 # the OTHERS = definition below, so they go in the tar files.
219 SFILES_STAND = $(SFILES) standalone.c
220 SFILES_KGDB  = $(SFILES) stuff.c kdb-start.c
221
222 # Header files that are not named in config/* Makefile fragments go here.
223 HFILES= breakpoint.h buildsym.h command.h defs.h environ.h \
224         expression.h frame.h gdbcmd.h gdbcore.h \
225         ieee-float.h inferior.h minimon.h partial-stab.h \
226         signals.h signame.h symfile.h symtab.h \
227         target.h terminal.h tm-68k.h tm-i960.h tm-sunos.h tm-sysv4.h \
228         xm-m68k.h xm-sysv4.h language.h parser-defs.h value.h
229
230 # Header files for machine opcode tables.
231 # when OPCODE_DIR changes to ../include, remove the whole $(OPCODES)
232 # business, since they will be put into the GDB release files by somebody else.
233 OPCODE_DIR1 = ../include/opcode/
234 OPCODE_DIR2 = ./
235 OPCODES = $(OPCODE_DIR1)pn.h  $(OPCODE_DIR1)np1.h \
236         $(OPCODE_DIR1)sparc.h $(OPCODE_DIR1)vax.h \
237         $(OPCODE_DIR1)m68k.h  $(OPCODE_DIR2)ns32k-opcode.h \
238         $(OPCODE_DIR2)convx-opcode.h $(OPCODE_DIR1)pyr.h \
239         $(OPCODE_DIR1)mips.h  $(OPCODE_DIR2)am29k-opcode.h \
240         $(OPCODE_DIR1)arm.h   $(OPCODE_DIR1)m88k.h \
241         $(OPCODE_DIR1)tahoe.h $(OPCODE_DIR2)rs6k-opcode.h \
242         $(OPCODE_DIR1)h8300.h $(OPCODE_DIR1)i960.h \
243         $(OPCODE_DIR1)i386.h  $(OPCODE_DIR1)i860.h
244
245 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c rem-multi.shar
246
247 MALLOCSRC = gmalloc.c mcheck.c mtrace.c mtrace.awk \
248             gmalloc.h
249
250 POSSLIBS_MAINDIR = regex.c regex.h alloca.c $(MALLOCSRC)
251 POSSLIBS = $(POSSLIBS_MAINDIR)
252
253 TESTS = testbpt.c testfun.c testrec.c testreg.c testregs.c
254
255 OTHERS = Makefile.in depend alldeps.mak createtags munch configure.in \
256          ChangeLog ChangeLog-3.x gdb.1 refcard.ps \
257          README TODO TAGS WHATS.NEW Projects \
258          .gdbinit COPYING $(YYFILES) \
259          copying.c Convex.notes copying.awk \
260          saber.suppress standalone.c stuff.c kdb-start.c \
261          putenv.c
262
263 # Subdirectories of gdb, which should be included in their entirety in
264 # gdb-xxx.tar.Z:
265 TARDIRS = doc # tests
266
267 # GDB "info" files, which should be included in their entirety
268 INFOFILES = gdb.info*
269
270 DEPFILES= ${TDEPFILES} ${XDEPFILES}
271
272 SOURCES=$(SFILES) $(ALLDEPFILES) $(YYFILES)
273 TAGFILES = $(SOURCES) ${HFILES} ${OPCODES} ${ALLPARAM} ${POSSLIBS} 
274 TAGFILES_MAINDIR = $(SFILES_MAINDIR) $(ALLDEPFILES_MAINDIR) \
275              ${HFILES} ${OPCODES} ${ALLPARAM} ${POSSLIBS_MAINDIR} 
276 TARFILES = ${TAGFILES_MAINDIR} ${OTHERS} ${REMOTE_EXAMPLES}
277
278 OBS = main.o blockframe.o breakpoint.o findvar.o stack.o source.o \
279     values.o eval.o valops.o valarith.o valprint.o printcmd.o \
280     symtab.o symfile.o symmisc.o infcmd.o infrun.o remote.o \
281     command.o utils.o expprint.o environ.o version.o \
282     copying.o $(DEPFILES) signame.o cplus-dem.o mem-break.o target.o \
283     inftarg.o ieee-float.o putenv.o parse.o language.o $(YYOBJ) \
284     buildsym.o \
285     dbxread.o coffread.o elfread.o dwarfread.o xcoffread.o # mipsread.o
286
287 RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES)
288
289 TSOBS = core.o inflow.o
290
291 NTSOBS = standalone.o
292
293 TSSTART = /lib/crt0.o
294
295 NTSSTART = kdb-start.o
296
297 SUBDIRS = doc
298
299 # For now, shortcut the "configure GDB for fewer languages" stuff.
300 YYFILES = c-exp.tab.c m2-exp.tab.c
301 YYOBJ = c-exp.tab.o m2-exp.tab.o
302
303 # Prevent Sun make from putting in the machine type.  Setting
304 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
305 .c.o:
306         ${CC} -c ${CFLAGS} $<
307
308 all: gdb
309         $(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)"
310 info: force
311         $(MAKE) subdir_do DO=info "DODIRS=$(SUBDIRS)"
312 install-info: force
313         $(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)"
314 clean-info: force
315         $(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)"
316
317 gdb.z:gdb.1
318         nroff -man $(srcdir)/gdb.1 | col -b > gdb.t 
319         pack gdb.t ; rm -f gdb.t
320         mv gdb.t.z gdb.z
321         
322 install: gdb 
323         $(INSTALL_PROGRAM) gdb $(bindir)/gdb
324         $(M_INSTALL)
325         $(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)"
326
327 init.c: $(srcdir)/munch $(OBS) $(TSOBS)
328         $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c
329
330 gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o
331         ${CC-LD} $(LDFLAGS) -o gdb init.o $(OBS) $(TSOBS) $(ADD_FILES) \
332           $(CLIBS) $(LOADLIBES)
333
334 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
335         #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS
336         #load ./init.c $(SFILES)
337         #unload ${srcdir}/c-exp.y ${srcdir}/m2-exp.y ${srcdir}/vx-share/*.h
338         #unload ${srcdir}/nindy-share/[A-Z]*
339         #load c-exp.tab.c m2-exp.tab.c
340         #load copying.c version.c
341         #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
342         #load ${LIBIBERTY_DIR}/*.c
343         #load ${BFD_DIR}/*.c
344         #load ${READLINE_DIR}/*.c
345         #load -ltermcap 
346         ##void mcheck(a) void (*a)(); { }
347         ##void mtrace() { }
348
349
350
351 # This is useful when debugging GDB, because some Unix's don't let you run GDB
352 # on itself without copying the executable.  So "make gdb1" will make
353 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
354 # Removing gdb1 before the copy is the right thing if gdb1 is open
355 # in another process.
356 gdb1: gdb
357         rm -f gdb1
358         cp gdb gdb1
359
360 # This is a remote stub which runs under unix and starts up an
361 # inferior process.  This is at least useful for debugging GDB's
362 # remote support.
363 rapp: $(RAPP_OBS)
364         rm -f rapp_init.c
365         ${srcdir}/munch ${MUNCH_DEFINE} ${RAPP_OBS} > rapp_init.c
366         ${CC-LD} $(LDFLAGS) -o $@ rapp_init.c $(RAPP_OBS)
367         
368 # Support for building Makefile out of configured pieces, automatically
369 # generated dependencies, etc.  alldeps.mak is a file that contains
370 # "make" variable definitions for all ALLDEPFILES, ALLDEPFILES_MAINDIR,
371 # ALLDEPFILES_SUBDIR, ALLPARAM, and ALLCONFIG, all cadged from the current
372 # contents of the config subdirectory.
373
374 alldeps.mak: ${srcdir}/config
375         rm -f alldeps.mak alldeps.tmp allparam.tmp allconfig.tmp
376         for i in `ls -d ${srcdir}/config/m[ht]-*` ; do \
377           echo $$i >>allconfig.tmp; \
378           awk <$$i ' \
379             $$1 == "TDEPFILES=" || $$1 == "XDEPFILES=" { \
380               for (i = 2; i <= NF; i++) \
381                 print $$i >> "alldeps.tmp" ; \
382             } \
383             $$1 == "TM_FILE=" || $$1 == "XM_FILE=" { \
384               print $$2 >> "allparam.tmp" }' ; \
385         done
386         sort <alldeps.tmp | uniq | \
387           sed -e 's/arm-convert.o/arm-convert.s/' \
388               -e 's!^Onindy.o!nindy-share/Onindy.c!' \
389               -e 's!^nindy.o!nindy-share/nindy.c!' \
390               -e 's!ttybreak.o!nindy-share/ttybreak.c!' \
391               -e 's!ttyflush.o!nindy-share/ttyflush.c!' \
392               -e 's!xdr_ld.o!vx-share/xdr_ld.c!' \
393               -e 's!xdr_ptrace.o!vx-share/xdr_ptrace.c!' \
394               -e 's!xdr_rdb.o!vx-share/xdr_rdb.c!' \
395               -e 's!xdr_regs.o!vx-share/xdr_regs.c!' \
396               -e 's/\.o/.c/' \
397             >alldeps2.tmp
398         echo '# Start of "alldeps.mak" definitions' \
399             >>alldeps.mak;
400         echo 'ALLDEPFILES = $$(ALLDEPFILES_MAINDIR) $$(ALLDEPFILES_SUBDIR)' \
401             >>alldeps.mak;
402         grep -v / alldeps2.tmp | \
403           awk 'BEGIN {printf "ALLDEPFILES_MAINDIR="} \
404             NR == 0 {printf $$0;} \
405             NR != 0 {printf "\\\n" $$0} \
406             END {printf "\n\n"}' >>alldeps.mak;
407         grep / alldeps2.tmp | \
408           awk 'BEGIN {printf "ALLDEPFILES_SUBDIR="} \
409             NR == 0 {printf $$0;} \
410             NR != 0 {printf "\\\n" $$0} \
411             END {printf "\n\n"}' >>alldeps.mak;
412         sort <allparam.tmp | uniq | awk 'BEGIN {printf "ALLPARAM="} \
413             NR == 0 {printf $$0;} \
414             NR != 0 {printf "\\\n" $$0} \
415             END {printf "\n\n"}' >>alldeps.mak;
416         sort <allconfig.tmp | uniq | awk 'BEGIN {printf "ALLCONFIG="} \
417             NR == 0 {printf $$0;} \
418             NR != 0 {printf "\\\n" $$0} \
419             END {printf "\n\n"}' >>alldeps.mak;
420         echo '# End of "alldeps.mak" definitions' \
421             >>alldeps.mak;
422         rm -f alldeps.tmp alldeps2.tmp allparam.tmp allconfig.tmp
423
424 # The sed script makes everything which depends on {x,t}m.h depend on
425 # config.status as well, in case someone reconfigures gdb out from
426 # under an already compiled gdb.
427 depend: $(SOURCES) Makefile.in
428         @echo Ignore errors about non-existent system-supplied include files
429         @echo for systems other than the one you are using.
430         @echo "If xm.h and tm.h don't exist, the error messages saying so"
431         @echo can safely be ignored.
432         @echo Also ignore parse errors in valops.c, and any errors in
433         @echo arm-convert.s.
434         -$(GCC) -MM $(CFLAGS) -I$(BFD_DIR) \
435           `ls $(SOURCES) | grep -v '\.[hy]$$' |sort -u` >depend.tmp
436 # If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except
437 # for xm.h and tm.h.  This allows the same "depend" file to be used
438 # by the various subdirectories.
439         if [ "${srcdir}" = "." ] ; then \
440           <depend.tmp sed \
441             -e 's; ./xm.h; xm.h;g'  \
442             -e 's; ./tm.h; tm.h;g'  \
443             -e 's; \./; $${srcdir}/;g'  \
444             -e 's; vx-share/; $${srcdir}/vx-share/;g'  \
445             -e 's; nindy-share/; $${srcdir}/nindy-share/;g'  \
446             >depend.tm2; \
447           rm depend.tmp; \
448           mv depend.tm2 depend.tmp; \
449         fi
450         <depend.tmp sed \
451           -e 's; [xt]m.h;& config.status;g'  \
452           -e 's; $(INCLUDE_DIR)/; $(INCLUDE_DEP)/;g'  \
453           -e 's; $(READLINE_DIR)/; $(READLINE_DEP)/;g'  \
454           -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g'  \
455           -e 's; ./xm.h; xm.h config.status;g'  \
456           -e 's; ./tm.h; tm.h config.status;g'  \
457           >depend
458         rm depend.tmp
459
460 config.status:
461         @echo "You must configure gdb.  Look at the README file for details."
462         @false
463
464 # These are not generated by "make depend" because they only are there
465 # for some machines.
466 # But these rules don't do what we want; we want to hack the foo.o: tm.h
467 # dependency to do the right thing.
468 tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-68k.h
469 tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-68k.h
470 xm-news1000.h: xm-news.h
471 xm-i386-sv32.h: xm-i386.h
472 tm-i386gas.h: tm-i386.h
473 xm-sun4os4.h: xm-sparc.h
474 tm-sun4os4.h: tm-sparc.h
475
476 kdb: $(NTSSTART) $(OBS) $(NTSOBS) ${ADD_DEPS} ${CDEPS}
477         rm -f init.c
478         $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(NTSOBS) > init.c
479         $(CC) $(LDFLAGS) -c init.c $(CLIBS) 
480         ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
481           -lc $(CLIBS)
482
483 # Put the proper machine-specific files first.
484 # createtags will edit the .o in DEPFILES into .c
485 TAGS: ${TAGFILES}
486         $(srcdir)/createtags $(TM_FILE) ${XM_FILE} $(DEPFILES) ${TAGFILES}
487 tags: TAGS
488
489 # Making distributions of GDB and friends.
490
491 # Make a directory `proto-gdb.dir' that contains an image of the GDB
492 # directory of the distribution, built up with symlinks.
493 make-proto-gdb.dir: force_update 
494         $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
495         $(MAKE) $(MFLAGS) -f Makefile    make-proto-gdb-1
496
497 # Make a tar file containing the GDB directory of the distribution.
498 gdb.tar.Z: force_update
499         $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
500         $(MAKE) $(MFLAGS) -f Makefile.in gdb-$(VERSION).tar.Z
501
502 # Set up the GDB directory for distribution, by building all files that
503 # are products of other files.
504 setup-to-dist: force_update
505         ../configure none
506         rm -f alldeps.mak
507         $(MAKE) $(MFLAGS) alldeps.mak
508         ../configure none
509         rm -f depend
510         $(MAKE) $(MFLAGS) depend
511         ../configure none
512         (cd doc; $(MAKE) $(MFLAGS) gdbVN.m4)
513         $(MAKE) $(MFLAGS) gdb.info
514         $(MAKE) $(MFLAGS) refcard.ps
515
516 # Build a tar file from a proto-gdb.dir.
517 gdb-$(VERSION).tar.Z: force_update
518         rm -f gdb.tar gdb-$(VERSION).tar.Z
519         $(MAKE) $(MFLAGS) -f Makefile    make-proto-gdb-1
520         ln -s proto-gdb.dir $(DIST)
521         tar chf - $(DIST) | compress >gdb-$(VERSION).tar.Z
522         rm -rf $(DIST) proto-gdb.dir
523
524 # Build a proto-gdb.dir after GDB has been set up for distribution.
525 # This stuff must be run in `Makefile', not `Makefile.in`; we use the makefile
526 # built in the setup-to-dist process, since it defines things like ALLCONFIG
527 # and ALLDEPFILES, that we need.
528 make-proto-gdb-1: ${TARFILES} ${TARDIRS} gdb.info
529         rm -rf proto-gdb.dir
530         mkdir proto-gdb.dir
531         cd proto-gdb.dir ; for i in ${TARFILES} ; do ln -s ../$$i . ; done
532         cd proto-gdb.dir ; ln -s ../${INFOFILES} .
533         cd proto-gdb.dir ; for i in ${TARDIRS}; do \
534           (mkdir $$i; cd $$i; \
535           ln -s ../../$$i/* .; \
536           rm -rf SCCS CVS.adm RCS config.status); done
537         mkdir proto-gdb.dir/config
538         cd proto-gdb.dir/config ; \
539           for i in $(ALLCONFIG) ; do ln -s ../../$$i ../$$i ; done
540         mkdir proto-gdb.dir/vx-share proto-gdb.dir/nindy-share
541         cd proto-gdb.dir/config ; \
542           for i in $(SFILES_SUBDIR) $(NONSRC_SUBDIR) $(ALLDEPFILES_SUBDIR); \
543             do ln -s ../../$$i ../$$i ; done
544         chmod og=u `find . -print`
545
546 clean:
547         rm -f ${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES}
548         rm -f init.c init.o version.c
549         rm -f gdb core gdb.tar gdb.tar.Z make.log
550         rm -f gdb[0-9]
551         $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)"
552
553 distclean: clean c-exp.tab.c m2-exp.tab.c TAGS
554         rm -f tm.h xm.h config.status
555         rm -f y.output yacc.acts yacc.tmp
556         rm -f ${TESTS} Makefile depend
557         $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)"
558
559 realclean: clean
560         rm -f c-exp.tab.c m2-exp.tab.c TAGS
561         rm -f tm.h xm.h config.status
562         rm -f Makefile depend
563         $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)"
564
565 STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
566
567 subdir_do: force
568         for i in $(DODIRS); do \
569                 if [ -d $(unsubdir)/$$i ] ; then \
570                         if (cd $(unsubdir)/$$i$(subdir); \
571                                 $(MAKE) \
572                                         "against=$(against)" \
573                                         "AR=$(AR)" \
574                                         "AR_FLAGS=$(AR_FLAGS)" \
575                                         "CC=$(CC)" \
576                                         "RANLIB=$(RANLIB)" \
577                                         "BISON=$(BISON)" $(DO)) ; then true ; \
578                         else exit 1 ; fi ; \
579                 else true ; fi ; \
580         done
581
582 # Copy the object files from a particular stage into a subdirectory.
583 stage1: force
584         -mkdir stage1
585         -mv -f $(STAGESTUFF) stage1
586         $(MAKE) subdir_do DO=stage1 "DODIRS=$(SUBDIRS)"
587
588 stage2: force
589         -mkdir stage2
590         -mv -f $(STAGESTUFF) stage2
591         $(MAKE) subdir_do DO=stage2 "DODIRS=$(SUBDIRS)"
592
593 stage3: force
594         -mkdir stage3
595         -mv -f $(STAGESTUFF) stage3
596         $(MAKE) subdir_do DO=stage3 "DODIRS=$(SUBDIRS)"
597
598 against=stage2
599
600 comparison: force
601         for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
602         $(MAKE) subdir_do DO=comparison "DODIRS=$(SUBDIRS)"
603
604 de-stage1: force
605         -(cd stage1 ; mv -f * ..)
606         -rmdir stage1
607         $(MAKE) subdir_do DO=de-stage1 "DODIRS=$(SUBDIRS)"
608
609 de-stage2: force
610         -(cd stage2 ; mv -f * ..)
611         -rmdir stage2
612         $(MAKE) subdir_do DO=de-stage2 "DODIRS=$(SUBDIRS)"
613
614 de-stage3: force
615         -(cd stage3 ; mv -f * ..)
616         -rmdir stage3
617         $(MAKE) subdir_do DO=de-stage3 "DODIRS=$(SUBDIRS)"
618
619 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
620         $(SHELL) ./config.status
621
622 force:
623
624 # Documentation!
625 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
626 refcard.dvi: $(srcdir)/doc/refcard.tex
627         ( cd $(unsubdir)/doc; $(MAKE) refcard.dvi )
628         mv $(unsubdir)/doc/refcard.dvi .
629
630 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
631 refcard.ps: $(srcdir)/doc/refcard.tex
632         ( cd $(unsubdir)/doc; $(MAKE) refcard.ps )
633         mv $(unsubdir)/doc/refcard.ps .
634
635 # GDB MANUAL: TeX dvi file
636 gdb.dvi: $(unsubdir)/doc/gdb-all.texi
637         ( cd $(unsubdir)/doc; $(MAKE) M4=$(M4) gdb.dvi )
638         mv $(unsubdir)/doc/gdb.dvi .
639
640 # GDB MANUAL: info file
641 gdb.info: $(unsubdir)/doc/gdb-all.texi
642         ( cd $(unsubdir)/doc; $(MAKE) M4=$(M4) gdb.info )
643         mv $(unsubdir)/doc/gdb.info* .
644
645 $(unsubdir)/doc/gdb-all.texi:
646         (cd $(srcdir)/doc; $(MAKE) M4=$(M4) gdb-all.texi)
647
648 # Make copying.c from COPYING
649 copying.c: ${srcdir}/COPYING ${srcdir}/copying.awk
650         awk -f ${srcdir}/copying.awk < ${srcdir}/COPYING > copying.c
651
652 version.c: Makefile.in
653         echo 'char *version = "$(VERSION)";' >version.c
654
655 # c-exp.tab.c is generated in target dir from c-exp.y if it doesn't exist
656 # in srcdir, then compiled in target dir to c-exp.tab.o.
657 c-exp.tab.o: c-exp.tab.c
658 c-exp.tab.c: $(srcdir)/c-exp.y
659         @echo 'Expect 4 shift/reduce conflicts.'
660         ${YACC} $(srcdir)/c-exp.y
661         -mv y.tab.c c-exp.tab.c
662
663 # m2-exp.tab.c is generated in target dir from m2-exp.y if it doesn't exist
664 # in srcdir, then compiled in target dir to m2-exp.tab.o.
665 m2-exp.tab.o: m2-exp.tab.c
666 m2-exp.tab.c: $(srcdir)/m2-exp.y
667         ${YACC} $(srcdir)/m2-exp.y
668         -mv y.tab.c m2-exp.tab.c
669
670 # The symbol-file readers have dependencies on BFD header files.
671 dbxread.o: ${srcdir}/dbxread.c
672         ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/dbxread.c
673
674 coffread.o: ${srcdir}/coffread.c
675         ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/coffread.c
676
677 mipsread.o: ${srcdir}/mipsread.c
678         ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/mipsread.c
679
680 elfread.o: ${srcdir}/elfread.c
681         ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/elfread.c
682
683 xcoffread.o: ${srcdir}/xcoffread.c
684         ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffread.c
685
686 xcoffexec.o: ${srcdir}/xcoffexec.c
687         ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/xcoffexec.c
688
689 # Drag in the files that are in another directory.
690
691 xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c
692         ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_ld.c
693
694 xdr_ptrace.o: ${srcdir}/vx-share/xdr_ptrace.c
695         ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_ptrace.c
696
697 xdr_rdb.o: ${srcdir}/vx-share/xdr_rdb.c
698         ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_rdb.c
699
700 xdr_regs.o: ${srcdir}/vx-share/xdr_regs.c
701         ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_regs.c
702
703 nindy.o: ${srcdir}/nindy-share/nindy.c
704         ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/nindy.c
705
706 Onindy.o: ${srcdir}/nindy-share/Onindy.c
707         ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/Onindy.c
708
709 ttybreak.o: ${srcdir}/nindy-share/ttybreak.c
710         ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/ttybreak.c
711
712 ttyflush.o: ${srcdir}/nindy-share/ttyflush.c
713         ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/ttyflush.c
714
715 lint: $(LINTFILES)
716         $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
717            `echo ${DEPFILES} | sed 's/\.o /\.c /g'
718
719 gdb.cxref: $(SFILES)
720         cxref -I. $(SFILES) >gdb.cxref
721
722 force_update:
723
724 # When used with GDB, the demangler should never look for leading
725 # underscores because GDB strips them off during symbol read-in.  Thus
726 # -Dnounderscore.  
727
728 cplus-dem.o: cplus-dem.c
729         ${CC} -c ${CFLAGS} -Dnounderscore \
730           `echo ${srcdir}/cplus-dem.c | sed 's,^\./,,'`
731
732 # GNU Make has an annoying habit of putting *all* the Makefile variables
733 # into the environment, unless you include this target as a circumvention.
734 # Rumor is that this will be fixed (and this target can be removed)
735 # in GNU Make 4.0.
736 .NOEXPORT:
737
738 # This is the end of "Makefile.in".  When built into "Makefile"
739 # by the configure script, two things are added below this point:
740 #       alldeps.mak -- defintions of all files that are used in
741 #                       host- or target-dependent configurations
742 #       depend -- what .o files depend on what .c and .h files,
743 #                       for all configurations.
744
745