Move building and configuring stuff from .Sanitize to "make gdb.tar.Z".
[deliverable/binutils-gdb.git] / gdb / Makefile.in
1 ##Copyright (C) 1989-1991 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 # Host and target-dependent makefile fragments come in here.
20 ####
21 # End of host and target-dependent makefile fragments
22
23 # Destination directory of the software tree build
24 destdir = /usr/local
25
26 # Place to install binaries in the destination tree.
27 bindir=$(destdir)/bin
28
29 # System V: If you compile gdb with a compiler which uses the coff
30 # encapsulation feature (this is a function of the compiler used, NOT
31 # of the m-?.h file selected by config.gdb), you must make sure that
32 # the GNU nm is the one that is used by munch.
33
34 # If you are compiling with GCC, make sure that either 1) You use the
35 # -traditional flag, or 2) You have the fixed include files where GCC
36 # can reach them. Otherwise the ioctl calls in inflow.c
37 # will be incorrectly compiled. The "fixincludes" script in the gcc
38 # distribution will fix your include files up.
39 #CC=cc
40 #CC=gcc -traditional
41 GCC=gcc
42
43 # Directory containing source files. Don't clean up the spacing,
44 # this exact string is matched for by the "configure" script.
45 srcdir = .
46
47 # It is also possible that you will need to add -I/usr/include/sys to the
48 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
49 # is where it should be according to Posix).
50
51 BISON=bison
52 BISONFLAGS=-y
53 YACC=$(BISON) $(BISONFLAGS)
54 # YACC=yacc
55 SHELL=/bin/sh
56 MAKE=make
57
58 # Documentation (gdb.dvi) needs either GNU m4 or SysV m4;
59 # Berkeley/Sun don't have quite enough.
60 #M4=/usr/5bin/m4
61 M4=gm4
62
63 # where to find texinfo; GDB dist should include a recent one
64 TEXIDIR=${srcdir}/../texinfo/fsf
65
66 # where to find makeinfo, preferably one designed for texinfo-2
67 MAKEINFO=makeinfo
68
69 # Set this up with gcc if you have gnu ld and the loader will print out
70 # line numbers for undefinded refs.
71 #CC-LD=gcc -static
72 CC-LD=${CC}
73
74 # define this to be "gmalloc.o" if you want to use the gnu malloc routine
75 # (useful for debugging memory allocation problems in gdb). To use your
76 # system malloc, uncomment the following two lines.
77 #GNU_MALLOC =
78 #MALLOC_CFLAGS = -DNO_MALLOC_CHECK
79 GNU_MALLOC = gmalloc.o mcheck.o mtrace.o
80 MALLOC_CFLAGS =
81
82 # Where is the "include" directory? Traditionally ../include or ./include
83 INCLUDE_DIR = ${srcdir}/../include
84 INCLUDE_DEP = $$(INCLUDE_DIR)
85
86 # Where is the source dir for the BFD library? Traditionally ../bfd or ./bfd
87 # (When we want the binary library built from it, we use ${BFD_DIR}${subdir}.)
88 BFD_DIR = ${srcdir}/../bfd
89 BFD_DEP = $$(BFD_DIR)
90 BFD_LIB = $(BFD_DIR)${subdir}/libbfd.a
91
92 # Where is the source dir for the READLINE library? Traditionally in .. or .
93 # (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
94 READLINE_DIR = ${srcdir}/../readline
95 READLINE_DEP = $$(READLINE_DIR)
96 RL_LIB = $(READLINE_DIR)${subdir}/libreadline.a
97
98 # All the includes used for CFLAGS and for lint.
99 # -I. for config files.
100 # -I${srcdir} possibly for regex.h also.
101 INCLUDE_CFLAGS = -I. -I${srcdir} -I$(INCLUDE_DIR) -I$(READLINE_DIR) -I${srcdir}/vx-share
102
103 # {X,T}M_CFLAGS, if defined, has system-dependent CFLAGS.
104 # CFLAGS for GDB
105 GLOBAL_CFLAGS = -g ${TM_CFLAGS} ${XM_CFLAGS}
106 #PROFILE_CFLAGS = -pg
107
108 CFLAGS = ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} ${MALLOC_CFLAGS} ${INCLUDE_CFLAGS}
109 # None of the things in CFLAGS will do any harm, and on some systems
110 # (e.g. SunOS4) it is important to use the M_CFLAGS.
111 LDFLAGS = $(CFLAGS)
112
113 # Where is the "-liberty" library, containing getopt and obstack?
114 LIBIBERTY_DIR = ${srcdir}/../libiberty
115 LIBIBERTY = ${LIBIBERTY_DIR}${subdir}/libiberty.a
116
117 # Flags that describe where you can find the termcap library.
118 # You may need to make other arrangements for USG.
119 TERMCAP = -ltermcap
120
121 # The xconfig file must define REGEX and REGEX1 on USG machines.
122 # If your sysyem is missing alloca(), or, more likely, it's there but
123 # it doesn't work, define ALLOCA & ALLOCA1 too.
124 # If your system is missing putenv(), add putenv.c to XM_ADD_FILES.
125
126 # Libraries and corresponding dependencies for compiling gdb.
127 # {X,T}M_CLIBS, defined in *config files, have host- and target-dependent libs.
128 # TERMCAP comes last, since readline depends on it.
129 CLIBS = $(XM_CLIBS) ${TM_CLIBS} ${BFD_LIB} ${LIBIBERTY} ${RL_LIB} ${TERMCAP}
130 CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${BFD_LIB} ${LIBIBERTY} ${RL_LIB}
131
132 ADD_FILES = ${REGEX} ${ALLOCA} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES}
133 ADD_DEPS = ${REGEX1} ${ALLOCA1} ${GNU_MALLOC} ${XM_ADD_FILES} ${TM_ADD_FILES}
134
135 VERSION = 3.98
136 DIST=gdb
137
138 LINT=/usr/5bin/lint
139 LINTFLAGS=
140
141 # Source files in the main directory.
142 # Files which are included via a tconfig/* or xconfig/* file
143 # should *not* be specified here; they're in "ALLDEPFILES".
144 SFILES_MAINDIR = \
145 blockframe.c breakpoint.c command.c core.c \
146 environ.c eval.c expprint.c findvar.c infcmd.c inflow.c infrun.c \
147 main.c printcmd.c \
148 remote.c source.c stack.c symmisc.c symtab.c symfile.c \
149 utils.c valarith.c valops.c valprint.c values.c expread.y \
150 signame.c cplus-dem.c mem-break.c target.c inftarg.c \
151 dbxread.c coffread.c \
152 ieee-float.c
153
154 # Source files in subdirectories (which will be handled separately by
155 # 'make gdb.tar.Z').
156 # Files which are included via a tconfig/* or xconfig/* file
157 # should *not* be specified here; they're in "ALLDEPFILES".
158 SFILES_SUBDIR = \
159 ${srcdir}/vx-share/dbgRpcLib.h \
160 ${srcdir}/vx-share/ptrace.h \
161 ${srcdir}/vx-share/reg.h \
162 ${srcdir}/vx-share/vxTypes.h \
163 ${srcdir}/vx-share/vxWorks.h \
164 ${srcdir}/vx-share/wait.h \
165 ${srcdir}/vx-share/xdr_ld.h \
166 ${srcdir}/vx-share/xdr_ptrace.h \
167 ${srcdir}/vx-share/xdr_rdb.h \
168 ${srcdir}/vx-share/xdr_regs.h \
169 ${srcdir}/nindy-share/b.out.h \
170 ${srcdir}/nindy-share/block_io.h \
171 ${srcdir}/nindy-share/coff.h \
172 ${srcdir}/nindy-share/demux.h \
173 ${srcdir}/nindy-share/env.h \
174 ${srcdir}/nindy-share/stop.h \
175 ${srcdir}/nindy-share/ttycntl.h
176
177 # Non-source files in subdirs, that should go into gdb.tar.Z.
178 NONSRC_SUBDIR = \
179 ${srcdir}/nindy-share/Makefile \
180 ${srcdir}/nindy-share/VERSION
181
182 # All source files that go into linking GDB, except config-specified files.
183 SFILES = $(SFILES_MAINDIR) $(SFILES_SUBDIR)
184
185 # All source files that lint should look at
186 LINTFILES = $(SFILES) expread.tab.c init.c
187
188 # Documentation source files
189 SFILES_DOCDIR = \
190 ${srcdir}/doc/gdb.texinfo \
191 ${srcdir}/doc/pretex.m4 \
192 ${srcdir}/doc/none.m4 \
193 ${srcdir}/doc/all.m4 \
194 ${srcdir}/doc/gdbinv-m.m4 \
195 ${srcdir}/doc/gdbinv-s.m4
196
197 # Any additional files specified on these lines should also be added to
198 # the OTHERS = definition below, so they go in the tar files.
199 SFILES_STAND = $(SFILES) standalone.c
200 SFILES_KGDB = $(SFILES) stuff.c kdb-start.c
201
202 # Header files that are not named in tconfig/* or xconfig/* go here.
203 HFILES= breakpoint.h command.h defs.h environ.h \
204 expression.h frame.h gdbcmd.h gdbcore.h \
205 getpagesize.h ieee-float.h inferior.h param-no-tm.h param.h \
206 signals.h signame.h symfile.h symtab.h \
207 target.h tdesc.h terminal.h tm-68k.h tm-i960.h tm-sunos.h \
208 value.h
209
210 # Header files for machine opcode tables.
211 # when OPCODE_DIR changes to ../include, remove the whole $(OPCODES)
212 # business, since they will be included in the separate includes tar file
213 # rather than in the gdb tar file.
214 OPCODE_DIR =
215 OPCODES = $(OPCODE_DIR)pn-opcode.h $(OPCODE_DIR)np1-opcode.h \
216 $(OPCODE_DIR)sparc-opcode.h $(OPCODE_DIR)vax-opcode.h \
217 $(OPCODE_DIR)m68k-opcode.h $(OPCODE_DIR)ns32k-opcode.h \
218 $(OPCODE_DIR)convx-opcode.h $(OPCODE_DIR)pyr-opcode.h \
219 $(OPCODE_DIR)mips-opcode.h $(OPCODE_DIR)am29k-opcode.h \
220 $(OPCODE_DIR)arm-opcode.h $(OPCODE_DIR)m88k-opcode.h \
221 $(OPCODE_DIR)tahoe-opcode.h
222
223 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c rem-multi.shar
224
225 MALLOCSRC = gmalloc.c mcheck.c mtrace.c mtrace.awk \
226 ansidecl.h gmalloc.h
227
228 POSSLIBS_MAINDIR = regex.c regex.h alloca.c $(MALLOCSRC)
229 POSSLIBS = $(POSSLIBS_MAINDIR)
230
231 TESTS = testbpt.c testfun.c testrec.c testreg.c testregs.c
232
233 # tdesc-lib cannot be named simply tdesc, because if it were, GNU make
234 # would try to make it from tdesc.c.
235 # tdesc-lib removed from the list due to Motorola copyrights...gnu@cygnus.com
236 OTHERS = Makefile.in depend alldeps.mak \
237 createtags munch configure configure.in \
238 ChangeLog ChangeLog-3.x \
239 README TODO TAGS WHATS.NEW Projects \
240 .gdbinit COPYING expread.tab.c \
241 copying.c Convex.notes copying.awk \
242 saber.suppress standalone.c stuff.c kdb-start.c \
243 putenv.c
244
245 # Subdirectories of gdb, which should be included in their entirety in
246 # gdb-xxx.tar.Z:
247 TARDIRS = doc hp-include # tests
248
249 DEPFILES= ${TDEPFILES} ${XDEPFILES}
250
251 SOURCES=$(SFILES) $(ALLDEPFILES)
252 TAGFILES = $(SOURCES) ${HFILES} ${OPCODES} ${ALLPARAM} ${POSSLIBS}
253 TAGFILES_MAINDIR = $(SFILES_MAINDIR) $(ALLDEPFILES_MAINDIR) \
254 ${HFILES} ${OPCODES} ${ALLPARAM} ${POSSLIBS_MAINDIR}
255 TARFILES = ${TAGFILES_MAINDIR} ${OTHERS} ${REMOTE_EXAMPLES}
256
257 OBS = main.o blockframe.o breakpoint.o findvar.o stack.o source.o \
258 values.o eval.o valops.o valarith.o valprint.o printcmd.o \
259 symtab.o symfile.o symmisc.o infcmd.o infrun.o remote.o \
260 command.o utils.o expread.o expprint.o environ.o version.o \
261 copying.o $(DEPFILES) signame.o cplus-dem.o mem-break.o target.o \
262 inftarg.o ieee-float.o putenv.o \
263 dbxread.o coffread.o # mipsread.o
264
265 RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES)
266
267 TSOBS = core.o inflow.o
268
269 NTSOBS = standalone.o
270
271 TSSTART = /lib/crt0.o
272
273 NTSSTART = kdb-start.o
274
275 # Prevent Sun make from putting in the machine type. Setting
276 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
277 .c.o:
278 ${CC} -c ${CFLAGS} $<
279
280 all: gdb
281
282 install: gdb
283 cp gdb $(bindir)/gdb.new
284 mv $(bindir)/gdb.new $(bindir)/gdb
285 $(M_INSTALL)
286
287 init.c: $(srcdir)/munch $(MUNCH_DEFINE) $(OBS) $(TSOBS)
288 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c
289
290 gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o
291 ${CC-LD} $(LDFLAGS) -o gdb init.o $(OBS) $(TSOBS) $(ADD_FILES) \
292 $(CLIBS)
293
294 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
295 #setopt load_flags $(CFLAGS) -I$(BFD_DIR) -DHOST_SYS=SUN4_SYS
296 #load ./init.c $(SFILES)
297 #unload ${srcdir}/expread.y ${srcdir}/vx-share/*.h
298 #unload ${srcdir}/nindy-share/[A-Z]*
299 #load ${srcdir}/expread.tab.c
300 #load copying.c version.c
301 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
302 #load ${LIBIBERTY_DIR}/*.c
303 #load ${BFD_DIR}/*.c
304 #load ${READLINE_DIR}/*.c
305 #load -ltermcap
306 ##void mcheck(a) void (*a)(); { }
307 ##void mtrace() { }
308
309
310
311 # This is useful when debugging GDB, because some Unix's don't let you run GDB
312 # on itself without copying the executable. So "make gdb1" will make
313 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
314 # Removing gdb1 before the copy is the right thing if gdb1 is open
315 # in another process.
316 gdb1: gdb
317 rm -f gdb1
318 cp gdb gdb1
319
320 # This is a remote stub which runs under unix and starts up an
321 # inferior process. This is at least useful for debugging GDB's
322 # remote support.
323 rapp: $(RAPP_OBS)
324 rm -f rapp_init.c
325 ${srcdir}/munch ${RAPP_OBS} > rapp_init.c
326 ${CC-LD} $(LDFLAGS) -o $@ rapp_init.c $(RAPP_OBS)
327
328 # Support for building Makefile out of configured pieces, automatically
329 # generated dependencies, etc. alldeps.mak is a file that contains
330 # "make" variable definitions for all ALLDEPFILES, ALLDEPFILES_MAINDIR,
331 # ALLDEPFILES_SUBDIR, ALLPARAM, and ALLCONFIG, all cadged from the current
332 # contents of the xconfig and tconfig subdirectories.
333
334 alldeps.mak: ${srcdir}/tconfig ${srcdir}/xconfig
335 rm -f alldeps.mak alldeps.tmp allparam.tmp allconfig.tmp
336 for i in `ls -d ${srcdir}/tconfig/*[0-9A-Za-z] \
337 ${srcdir}/xconfig/*[0-9A-Za-z] | \
338 grep -v RCS | grep -v CVS.adm | grep -v SCCS` ; do \
339 echo $$i >>allconfig.tmp; \
340 awk <$$i ' \
341 $$1 == "TDEPFILES=" || $$1 == "XDEPFILES=" { \
342 for (i = 2; i <= NF; i++) \
343 print $$i >> "alldeps.tmp" ; \
344 } \
345 $$1 == "TM_FILE=" || $$1 == "XM_FILE=" { \
346 print $$2 >> "allparam.tmp" }' ; \
347 done
348 sort <alldeps.tmp | uniq | \
349 sed -e 's/arm-convert.o/arm-convert.s/' \
350 -e 's!^Onindy.o!nindy-share/Onindy.c!' \
351 -e 's!^nindy.o!nindy-share/nindy.c!' \
352 -e 's!ttybreak.o!nindy-share/ttybreak.c!' \
353 -e 's!ttyflush.o!nindy-share/ttyflush.c!' \
354 -e 's!xdr_ld.o!vx-share/xdr_ld.c!' \
355 -e 's!xdr_ptrace.o!vx-share/xdr_ptrace.c!' \
356 -e 's!xdr_rdb.o!vx-share/xdr_rdb.c!' \
357 -e 's!xdr_regs.o!vx-share/xdr_regs.c!' \
358 -e 's/\.o/.c/' \
359 >alldeps2.tmp
360 echo '# Start of "alldeps.mak" definitions' \
361 >>alldeps.mak;
362 echo 'ALLDEPFILES = $$(ALLDEPFILES_MAINDIR) $$(ALLDEPFILES_SUBDIR)' \
363 >>alldeps.mak;
364 grep -v / alldeps2.tmp | \
365 awk 'BEGIN {printf "ALLDEPFILES_MAINDIR="} \
366 NR == 0 {printf $$0;} \
367 NR != 0 {printf "\\\n" $$0} \
368 END {printf "\n\n"}' >>alldeps.mak;
369 grep / alldeps2.tmp | \
370 awk 'BEGIN {printf "ALLDEPFILES_SUBDIR="} \
371 NR == 0 {printf $$0;} \
372 NR != 0 {printf "\\\n" $$0} \
373 END {printf "\n\n"}' >>alldeps.mak;
374 sort <allparam.tmp | uniq | awk 'BEGIN {printf "ALLPARAM="} \
375 NR == 0 {printf $$0;} \
376 NR != 0 {printf "\\\n" $$0} \
377 END {printf "\n\n"}' >>alldeps.mak;
378 sort <allconfig.tmp | uniq | awk 'BEGIN {printf "ALLCONFIG="} \
379 NR == 0 {printf $$0;} \
380 NR != 0 {printf "\\\n" $$0} \
381 END {printf "\n\n"}' >>alldeps.mak;
382 echo '# End of "alldeps.mak" definitions' \
383 >>alldeps.mak;
384 rm -f alldeps.tmp alldeps2.tmp allparam.tmp allconfig.tmp
385
386 # The sed script makes everything which depends on {x,t}m.h depend on
387 # config.status as well, in case someone reconfigures gdb out from
388 # under an already compiled gdb.
389 depend: $(SOURCES) Makefile.in
390 @echo Ignore errors about non-existent system-supplied include files
391 @echo for systems other than the one you are using.
392 @echo "If xm.h and tm.h don't exist, the error messages saying so"
393 @echo can safely be ignored.
394 @echo Also ignore parse errors in valops.c, and any errors in
395 @echo arm-convert.s.
396 -$(GCC) -MM $(CFLAGS) -I$(BFD_DIR) \
397 `ls $(SOURCES) | grep -v '\.[hy]$$' |sort -u` >depend.tmp
398 # If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except
399 # for xm.h and tm.h. This allows the same "depend" file to be used
400 # by the various subdirectories.
401 if [ "${srcdir}" = "." ] ; then \
402 <depend.tmp sed \
403 -e 's; ./xm.h; xm.h;g' \
404 -e 's; ./tm.h; tm.h;g' \
405 -e 's; \./; $${srcdir}/;g' \
406 -e 's; vx-share/; $${srcdir}/vx-share/;g' \
407 -e 's; nindy-share/; $${srcdir}/nindy-share/;g' \
408 >depend.tm2; \
409 rm depend.tmp; \
410 mv depend.tm2 depend.tmp; \
411 fi
412 <depend.tmp sed \
413 -e 's; [xt]m.h;& config.status;g' \
414 -e 's; $(INCLUDE_DIR)/; $(INCLUDE_DEP)/;g' \
415 -e 's; $(READLINE_DIR)/; $(READLINE_DEP)/;g' \
416 -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g' \
417 -e 's; ./xm.h; xm.h config.status;g' \
418 -e 's; ./tm.h; tm.h config.status;g' \
419 >depend
420 rm depend.tmp
421
422 config.status:
423 @echo "You must configure gdb. Look at the README file for details."
424 @false
425
426 # These are not generated by "make depend" because they only are there
427 # for some machines.
428 # But these rules don't do what we want; we want to hack the foo.o: tm.h
429 # dependency to do the right thing.
430 tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h : tm-68k.h
431 tm-hp300hpux.h tm-sun2.h tm-3b1.h : tm-68k.h
432 xm-news1000.h : xm-news.h
433 xm-i386-sv32.h : xm-i386.h
434 tm-i386gas.h: tm-i386.h
435 xm-sun4os4.h : xm-sparc.h
436 tm-sun4os4.h : tm-sparc.h
437
438 kdb : $(NTSSTART) $(OBS) $(NTSOBS) ${ADD_DEPS} ${CDEPS}
439 rm -f init.c
440 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(NTSOBS) > init.c
441 $(CC) $(LDFLAGS) -c init.c $(CLIBS)
442 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
443 -lc $(CLIBS)
444
445 # Put the proper machine-specific files first.
446 # createtags will edit the .o in DEPFILES into .c
447 TAGS: ${TAGFILES}
448 $(srcdir)/createtags $(TM_FILE) ${XM_FILE} $(DEPFILES) ${TAGFILES}
449 tags: TAGS
450
451 gdb.tar.Z: force_update
452 ./configure none
453 rm -f alldeps.mak
454 $(MAKE) alldeps.mak
455 ./configure none
456 rm -f depend
457 $(MAKE) depend
458 ./configure none
459 $(MAKE) gdb.info
460 $(MAKE) gdb-$(VERSION).tar.Z
461
462 gdb-$(VERSION).tar.Z: ${TARFILES} ${TARDIRS}
463 rm -f gdb.tar gdb-$(VERSION).tar.Z; rm -rf $(DIST)
464 mkdir $(DIST)
465 cd $(DIST) ; for i in ${TARFILES} ; do ln -s ../$$i . ; done
466 cd $(DIST); for i in ${TARDIRS}; do \
467 (mkdir $$i; cd $$i; \
468 ln -s ../../$$i/* .; \
469 rm -rf SCCS CVS.adm RCS); done
470 mkdir $(DIST)/xconfig ${DIST}/tconfig
471 cd $(DIST)/tconfig ; \
472 for i in $(ALLCONFIG) ; do ln -s ../../$$i ../$$i ; done
473 mkdir $(DIST)/vx-share $(DIST)/nindy-share
474 cd $(DIST)/tconfig ; \
475 for i in $(SFILES_SUBDIR) $(NONSRC_SUBDIR) $(ALLDEPFILES_SUBDIR); \
476 do ln -s ../../$$i ../$$i ; done
477 tar chf - $(DIST) | compress >gdb-$(VERSION).tar.Z
478 rm -rf $(DIST)
479
480 clean:
481 rm -f ${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES}
482 rm -f init.c init.o version.c
483 rm -f gdb core gdb.tar gdb.tar.Z make.log
484 rm -f gdb[0-9]
485 rm -f gdb.dvi rdl-apps.texinfo gdb-all*
486
487 distclean: clean expread.tab.c TAGS
488 rm -f tm.h xm.h config.status
489 rm -f y.output yacc.acts yacc.tmp
490 rm -f ${TESTS} Makefile depend
491
492 realclean: clean
493 rm -f expread.tab.c TAGS
494 rm -f tm.h xm.h config.status
495 rm -f Makefile depend
496
497 # Documentation!
498
499 rdl-apps.texinfo: ${READLINE_DIR}/inc-readline.texinfo \
500 ${READLINE_DIR}/inc-history.texinfo
501 echo "@include ${READLINE_DIR}/inc-readline.texinfo" >rdl-apps.texinfo
502 echo "@include ${READLINE_DIR}/inc-history.texinfo" >>rdl-apps.texinfo
503
504 gdb-all.texinfo: ${SFILES_DOCDIR}
505 ( cd $(srcdir)/doc; \
506 ${M4} pretex.m4 none.m4 all.m4 gdb.texinfo ) >gdb-all.texinfo
507
508 gdb.dvi : gdb-all.texinfo rdl-apps.texinfo
509 TEXINPUTS=${TEXIDIR}:$$TEXINPUTS tex gdb-all.texinfo
510 texindex gdb-all.??
511 TEXINPUTS=${TEXIDIR}:$$TEXINPUTS tex gdb-all.texinfo
512 mv gdb-all.dvi gdb.dvi
513 rm -f gdb-all.?? gdb-all.???
514
515 # We're using texinfo2, and older makeinfo's may not be able to
516 # cope with all the markup. In the meantime, we distribute the info
517 # files as formatted by the elisp texinfo2 code.
518 gdb.info: gdb-all.texinfo
519 ${MAKEINFO} gdb-all.texinfo
520
521 # Make copying.c from COPYING
522 copying.c : COPYING copying.awk
523 awk -f copying.awk < COPYING > copying.c
524
525 version.c : Makefile.in
526 echo 'char *version = "$(VERSION)";' >version.c
527
528 # expread.tab.c is generated in srcdir from expread.y, then compiled in target
529 # directory to expread.o.
530 ${srcdir}/expread.tab.c : $(srcdir)/expread.y
531 @echo 'Expect 4 shift/reduce conflicts.'
532 ${YACC} $(srcdir)/expread.y
533 mv y.tab.c ${srcdir}/expread.tab.c
534
535 expread.o : ${srcdir}/expread.tab.c defs.h param.h symtab.h \
536 frame.h expression.h value.h command.h
537 $(CC) -c ${CFLAGS} `echo ${srcdir}/expread.tab.c | sed 's,^\./,,'`
538 mv expread.tab.o expread.o
539
540 # dbxread, coffread, mipsread have dependencies on BFD header files.
541 dbxread.o: ${srcdir}/dbxread.c
542 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/dbxread.c
543
544 coffread.o: ${srcdir}/coffread.c
545 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/coffread.c
546
547 mipsread.o: ${srcdir}/mipsread.c
548 ${CC} -c ${CFLAGS} -I$(BFD_DIR) ${srcdir}/mipsread.c
549
550 # Drag in the files that are in another directory.
551
552 xdr_ld.o: ${srcdir}/vx-share/xdr_ld.c
553 ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_ld.c
554
555 xdr_ptrace.o: ${srcdir}/vx-share/xdr_ptrace.c
556 ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_ptrace.c
557
558 xdr_rdb.o: ${srcdir}/vx-share/xdr_rdb.c
559 ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_rdb.c
560
561 xdr_regs.o: ${srcdir}/vx-share/xdr_regs.c
562 ${CC} -c ${CFLAGS} ${srcdir}/vx-share/xdr_regs.c
563
564 nindy.o: ${srcdir}/nindy-share/nindy.c
565 ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/nindy.c
566
567 Onindy.o: ${srcdir}/nindy-share/Onindy.c
568 ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/Onindy.c
569
570 ttybreak.o: ${srcdir}/nindy-share/ttybreak.c
571 ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/ttybreak.c
572
573 ttyflush.o: ${srcdir}/nindy-share/ttyflush.c
574 ${CC} -c ${CFLAGS} ${srcdir}/nindy-share/ttyflush.c
575
576 tdesc-lib/libdc.o : force_update
577 cd tdesc-lib ; ${MAKE} "SYSV_DEFINE=${SYSV_DEFINE}"
578
579 lint: $(LINTFILES)
580 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES)
581
582 gdb.cxref: $(SFILES)
583 cxref -I. $(SFILES) >gdb.cxref
584
585 force_update :
586
587 # When used with GDB, the demangler should never look for leading
588 # underscores because GDB strips them off during symbol read-in. Thus
589 # -Dnounderscore.
590
591 cplus-dem.o : cplus-dem.c
592 ${CC} -c ${CFLAGS} -Dnounderscore \
593 `echo ${srcdir}/cplus-dem.c | sed 's,^\./,,'`
594
595 # This is the end of "Makefile.in". When built into "Makefile"
596 # by the configure script, two things are added below this point:
597 # alldeps.mak -- defintions of all files that are used in
598 # host- or target-dependent configurations
599 # depend -- what .o files depend on what .c and .h files,
600 # for all configurations.
601
602
This page took 0.041456 seconds and 5 git commands to generate.