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