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