* Makefile.in (BFD_SRC_DIR): Renamed def and usages from BFD_DIR.
[deliverable/binutils-gdb.git] / gdb / Makefile.in
1 #Copyright 1989, 1990, 1991, 1992, 1993 Free Software Foundation, Inc.
2
3 # This file is part of GDB.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 prefix = /usr/local
20
21 program_transform_name =
22 exec_prefix = $(prefix)
23 bindir = $(exec_prefix)/bin
24 libdir = $(exec_prefix)/lib
25 tooldir = $(libdir)/$(target_alias)
26
27 datadir = $(prefix)/lib
28 mandir = $(prefix)/man
29 man1dir = $(mandir)/man1
30 man2dir = $(mandir)/man2
31 man3dir = $(mandir)/man3
32 man4dir = $(mandir)/man4
33 man5dir = $(mandir)/man5
34 man6dir = $(mandir)/man6
35 man7dir = $(mandir)/man7
36 man8dir = $(mandir)/man8
37 man9dir = $(mandir)/man9
38 infodir = $(prefix)/info
39 includedir = $(prefix)/include
40 docdir = $(datadir)/doc
41
42 SHELL = /bin/sh
43
44 INSTALL = install -c
45 INSTALL_PROGRAM = $(INSTALL)
46 INSTALL_DATA = $(INSTALL)
47
48 AR = ar
49 AR_FLAGS = qv
50 RANLIB = ranlib
51
52 # Flags that describe where you can find the termcap library.
53 # This can be overridden in the host Makefile fragment file.
54 TERMCAP = -ltermcap
55
56 # System V: If you compile gdb with a compiler which uses the coff
57 # encapsulation feature (this is a function of the compiler used, NOT
58 # of the m-?.h file selected by config.gdb), you must make sure that
59 # the GNU nm is the one that is used by munch.
60
61 # If you are compiling with GCC, make sure that either 1) You use the
62 # -traditional flag, or 2) You have the fixed include files where GCC
63 # can reach them. Otherwise the ioctl calls in inflow.c
64 # will be incorrectly compiled. The "fixincludes" script in the gcc
65 # distribution will fix your include files up.
66 #CC=cc
67 #CC=gcc -traditional
68 GCC=gcc
69
70 # Directory containing source files. Don't clean up the spacing,
71 # this exact string is matched for by the "configure" script.
72 srcdir = .
73
74 # It is also possible that you will need to add -I/usr/include/sys to the
75 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
76 # is where it should be according to Posix).
77
78 # If you use bison instead of yacc, it needs to include the "-y" argument.
79 #BISON=bison -y
80 BISON=yacc
81 YACC=$(BISON)
82
83 # where to find texinfo; GDB dist should include a recent one
84 TEXIDIR=${srcdir}/../texinfo
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 are the source and binary directories for the BFD library?
113 BFD_SRC_DIR = ${srcdir}/../bfd
114 BFD_OBJ_DIR = ./../bfd${subdir}
115 BFD_DEP = $$(BFD_SRC_DIR)
116 BFD_LIB = $(BFD_OBJ_DIR)/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.
127 # -I${srcdir}/config for more generic config files.
128 INCLUDE_CFLAGS = -I. -I${srcdir} -I${srcdir}/config -I$(INCLUDE_DIR)
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
141 # (e.g. SunOS4) it is important to use the MH_CFLAGS.
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
148 # Where is the "-lopcodes" library, with (some of) the opcode tables and
149 # disassemblers?
150 OPCODES = ./../opcodes${subdir}/libopcodes.a
151
152 # The config/mh-* file must define REGEX and REGEX1 on USG machines.
153 # If your system is missing alloca(), or, more likely, it's there but
154 # it doesn't work, define ALLOCA & ALLOCA1 too.
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.
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}
163 CLIBS = ${BFD_LIB} ${RL_LIB} ${TERMCAP} ${OPCODES} ${MMALLOC_LIB} \
164 ${LIBIBERTY} ${XM_CLIBS} ${TM_CLIBS} ${NAT_CLIBS}
165 CDEPS = ${XM_CDEPS} ${TM_CDEPS} ${NAT_CDEPS} \
166 ${BFD_LIB} ${RL_LIB} ${OPCODES} ${MMALLOC_LIB} ${LIBIBERTY}
167
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}
172
173 VERSION = 4.9.1
174 DIST=gdb
175
176 LINT=/usr/5bin/lint
177 LINTFLAGS= -I${BFD_SRC_DIR} -I${BFD_OBJ_DIR}
178
179 RUNTEST=runtest
180 RUNTESTFLAGS=
181
182 # This is ser-unix.o for any system which supports a v7/BSD/SYSV/POSIX
183 # interface to the serial port. Hopefully if get ported to OS/2, VMS,
184 # etc., then there will be (as part of the C library or perhaps as
185 # part of libiberty) a POSIX interface. But at least for now the
186 # host-dependent makefile fragment might need to use something else
187 # besides ser-unix.o
188 SER_HARDWIRE=ser-unix.o
189
190 # Host and target-dependent makefile fragments come in here.
191 ####
192 # End of host and target-dependent makefile fragments
193
194 FLAGS_TO_PASS = \
195 "prefix=$(prefix)" \
196 "exec_prefix=$(exec_prefix)" \
197 "against=$(against)" \
198 "AR=$(AR)" \
199 "AR_FLAGS=$(AR_FLAGS)" \
200 "CC=$(CC)" \
201 "CFLAGS=$(CFLAGS)" \
202 "CHILLFLAGS=$(CHILLFLAGS)" \
203 "CHILL=$(CHILL)" \
204 "CHILL_LIB=$(CHILL_LIB)" \
205 "CXX=$(CXX)" \
206 "CXXFLAGS=$(CXXFLAGS)" \
207 "RANLIB=$(RANLIB)" \
208 "MAKEINFO=$(MAKEINFO)" \
209 "INSTALL=$(INSTALL)" \
210 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
211 "INSTALL_DATA=$(INSTALL_DATA)" \
212 "RUNTEST=$(RUNTEST)" \
213 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
214 "BISON=$(BISON)"
215
216 # Flags that we pass when building the testsuite.
217
218 CC_FOR_TARGET = ` \
219 if [ -f $${rootme}/../gcc/Makefile ] ; then \
220 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
221 else \
222 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
223 echo $(CC); \
224 else \
225 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
226 fi; \
227 fi`
228
229 CXX = gcc
230
231 CXX_FOR_TARGET = ` \
232 if [ -f $${rootme}/../gcc/Makefile ] ; then \
233 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/; \
234 else \
235 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
236 echo $(CXX); \
237 else \
238 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
239 fi; \
240 fi`
241
242 CHILLFLAGS = $(CFLAGS)
243 CHILL = gcc
244 CHILL_FOR_TARGET = ` \
245 if [ -f $${rootme}/../gcc/Makefile ] ; then \
246 echo $${rootme}/../gcc/xgcc -B$${rootme}/../gcc/ -L$${rootme}/../chillrt/; \
247 else \
248 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
249 echo $(CC); \
250 else \
251 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
252 fi; \
253 fi`
254 CHILL_LIB = -lchill
255
256 # The use of $$(x_FOR_TARGET) reduces the command line length by not
257 # duplicating the lengthy definition.
258 TARGET_FLAGS_TO_PASS = \
259 "prefix=$(prefix)" \
260 "exec_prefix=$(exec_prefix)" \
261 "against=$(against)" \
262 'CC=$$(CC_FOR_TARGET)' \
263 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
264 "CFLAGS=$(CFLAGS)" \
265 "CHILLFLAGS=$(CHILLFLAGS)" \
266 'CHILL=$$(CHILL_FOR_TARGET)' \
267 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
268 "CHILL_LIB=$(CHILL_LIB)" \
269 'CXX=$$(CXX_FOR_TARGET)' \
270 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
271 "CXXFLAGS=$(CXXFLAGS)" \
272 "MAKEINFO=$(MAKEINFO)" \
273 "INSTALL=$(INSTALL)" \
274 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
275 "INSTALL_DATA=$(INSTALL_DATA)" \
276 "RUNTEST=$(RUNTEST)" \
277 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
278 "BISON=$(BISON)"
279
280 # All source files that go into linking GDB.
281 # Source files which are included via a config/*/* Makefile fragment should
282 # *not* be specified here; they're in "ALLDEPFILES".
283 # Neither should links made at configuration time be specified here, since
284 # SFILES is used in building the distribution archive.
285
286 SFILES = ${srcdir}/blockframe.c ${srcdir}/breakpoint.c ${srcdir}/buildsym.c \
287 ${srcdir}/c-exp.y ${srcdir}/c-lang.c ${srcdir}/c-typeprint.c \
288 ${srcdir}/c-valprint.c ${srcdir}/ch-exp.y ${srcdir}/ch-lang.c \
289 ${srcdir}/ch-typeprint.c ${srcdir}/ch-valprint.c ${srcdir}/coffread.c \
290 ${srcdir}/command.c ${srcdir}/complaints.c ${srcdir}/core.c \
291 ${srcdir}/cp-valprint.c ${srcdir}/dbxread.c ${srcdir}/demangle.c \
292 ${srcdir}/dwarfread.c ${srcdir}/elfread.c ${srcdir}/environ.c \
293 ${srcdir}/eval.c ${srcdir}/expprint.c ${srcdir}/findvar.c \
294 ${srcdir}/gdbtypes.c \
295 ${srcdir}/infcmd.c ${srcdir}/inflow.c ${srcdir}/infrun.c \
296 ${srcdir}/language.c ${srcdir}/putenv.c ${srcdir}/m2-exp.y \
297 ${srcdir}/m2-lang.c ${srcdir}/m2-typeprint.c \
298 ${srcdir}/m2-valprint.c ${srcdir}/main.c ${srcdir}/maint.c \
299 ${srcdir}/mem-break.c ${srcdir}/minsyms.c ${srcdir}/mipsread.c \
300 ${srcdir}/objfiles.c ${srcdir}/parse.c ${srcdir}/printcmd.c \
301 ${srcdir}/remote.c ${srcdir}/source.c ${srcdir}/stabsread.c \
302 ${srcdir}/stack.c \
303 ${srcdir}/symfile.c ${srcdir}/symmisc.c ${srcdir}/symtab.c \
304 ${srcdir}/target.c ${srcdir}/typeprint.c ${srcdir}/utils.c \
305 ${srcdir}/valarith.c \
306 ${srcdir}/valops.c ${srcdir}/valprint.c ${srcdir}/values.c \
307 ${srcdir}/serial.c ${srcdir}/ser-unix.c
308
309 # Files that are not source code, but need to go into gdb-$(VERSION).tar.Z.
310 NONSRC = ${srcdir}/Makefile.in ${srcdir}/depend ${srcdir}/alldeps.mak \
311 ${srcdir}/munch ${srcdir}/configure.in \
312 ${srcdir}/ChangeLog ${srcdir}/ChangeLog-9091 ${srcdir}/ChangeLog-92 \
313 ${srcdir}/ChangeLog-3.x \
314 ${srcdir}/gdb.1 ${srcdir}/refcard.ps ${srcdir}/README ${srcdir}/TODO \
315 TAGS ${srcdir}/NEWS ${srcdir}/Projects ${srcdir}/.gdbinit \
316 ${srcdir}/COPYING $(YYFILES) ${srcdir}/copying.c \
317 ${srcdir}/copying.awk \
318 ${srcdir}/saber.suppress ${srcdir}/standalone.c ${srcdir}/stuff.c \
319 ${srcdir}/kdb-start.c ${srcdir}/gcc.patch \
320 ${srcdir}/nindy-share/Makefile ${srcdir}/nindy-share/VERSION \
321 ${srcdir}/nindy-share/README ${srcdir}/vx-share/README \
322 ${srcdir}/29k-share/README \
323 ${srcdir}/config/convex/Convex.notes
324
325 # All source files that lint should look at
326 LINTFILES = $(SFILES) $(YYFILES) init.c
327
328 # Any additional files specified on these lines should also be added to
329 # the NONSRC definition, so they go in the tar files.
330 SFILES_STAND = $(SFILES) standalone.c
331 SFILES_KGDB = $(SFILES) stuff.c kdb-start.c
332
333 # Header files that are not named in config/*/* Makefile fragments go here.
334 HFILES = ${srcdir}/breakpoint.h ${srcdir}/buildsym.h ${srcdir}/call-cmds.h \
335 ${srcdir}/command.h ${srcdir}/defs.h ${srcdir}/environ.h \
336 ${srcdir}/expression.h ${srcdir}/frame.h ${srcdir}/gdbcmd.h \
337 ${srcdir}/gdbcore.h ${srcdir}/gdbtypes.h ${srcdir}/gdb-stabs.h \
338 ${srcdir}/inferior.h ${srcdir}/language.h ${srcdir}/minimon.h \
339 ${srcdir}/objfiles.h ${srcdir}/parser-defs.h \
340 ${srcdir}/partial-stab.h ${srcdir}/serial.h ${srcdir}/signals.h \
341 ${srcdir}/solib.h ${srcdir}/symfile.h ${srcdir}/symtab.h \
342 ${srcdir}/stabsread.h ${srcdir}/target.h ${srcdir}/terminal.h \
343 ${srcdir}/typeprint.h ${srcdir}/xcoffsolib.h ${srcdir}/value.h \
344 ${srcdir}/c-lang.h ${srcdir}/ch-lang.h ${srcdir}/m2-lang.h \
345 ${srcdir}/complaints.h ${srcdir}/ns32k-opcode.h ${srcdir}/valprint.h \
346 ${srcdir}/config/m68k/tm-m68k.h ${srcdir}/config/pa/tm-hppa.h \
347 ${srcdir}/config/i960/tm-i960.h ${srcdir}/config/sparc/tm-sparc.h \
348 ${srcdir}/config/tm-sunos.h \
349 ${srcdir}/config/tm-sysv4.h ${srcdir}/config/m68k/xm-m68k.h \
350 ${srcdir}/config/sparc/xm-sparc.h \
351 ${srcdir}/config/xm-sysv4.h ${srcdir}/config/vax/xm-vax.h \
352 ${srcdir}/config/nm-trash.h ${srcdir}/29k-share/udi/udiids.h \
353 ${srcdir}/29k-share/udi/udiphcfg.h ${srcdir}/29k-share/udi/udiphunix.h \
354 ${srcdir}/29k-share/udi/udiproc.h ${srcdir}/29k-share/udi/udipt29k.h \
355 ${srcdir}/29k-share/udi/udiptcfg.h ${srcdir}/29k-share/udi/udisoc.h \
356 ${srcdir}/29k-share/udi_soc ${srcdir}/nindy-share/b.out.h \
357 ${srcdir}/nindy-share/block_io.h ${srcdir}/nindy-share/coff.h \
358 ${srcdir}/nindy-share/demux.h ${srcdir}/nindy-share/env.h \
359 ${srcdir}/nindy-share/stop.h ${srcdir}/nindy-share/ttycntl.h \
360 ${srcdir}/vx-share/dbgRpcLib.h ${srcdir}/vx-share/ptrace.h \
361 ${srcdir}/vx-share/vxTypes.h ${srcdir}/vx-share/vxWorks.h \
362 ${srcdir}/vx-share/wait.h ${srcdir}/vx-share/xdr_ld.h \
363 ${srcdir}/vx-share/xdr_ptrace.h ${srcdir}/vx-share/xdr_rdb.h
364
365 # GDB "info" files, which should be included in their entirety
366 INFOFILES = gdb.info*
367
368 REMOTE_EXAMPLES = m68k-stub.c i386-stub.c sparc-stub.c rem-multi.shar
369
370 POSSLIBS = ${srcdir}/regex.c ${srcdir}/regex.h ${srcdir}/alloca.c
371
372 TESTS = testbpt.c testfun.c testrec.c testreg.c testregs.c
373
374 # Subdirectories of gdb, which should be included in their entirety in
375 # gdb-xxx.tar.Z:
376 TARDIRS = doc sparclite # tests
377
378 # {X,T,NAT}DEPFILES are something of a pain in that it's hard to
379 # default their values the way we do for SER_HARDWIRE; in the future
380 # maybe much of the stuff now in {X,T,NAT}DEPFILES will go into other
381 # variables analogous to SER_HARDWIRE which get defaulted in this
382 # Makefile.in
383
384 DEPFILES = ${TDEPFILES} ${XDEPFILES} ${SER_HARDWIRE} ${NATDEPFILES}
385
386 SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES)
387 TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
388
389 TARFILES = ${SFILES} ${HFILES} ${NONSRC} ${ALLDEPFILES} $(ALLCONFIG) \
390 $(ALLPARAM) $(INFOFILES) ${POSSLIBS} ${REMOTE_EXAMPLES}
391
392 OBS = version.o main.o blockframe.o breakpoint.o findvar.o stack.o source.o \
393 values.o eval.o valops.o valarith.o valprint.o printcmd.o \
394 symtab.o symfile.o symmisc.o infcmd.o infrun.o remote.o \
395 command.o utils.o expprint.o environ.o gdbtypes.o \
396 copying.o $(DEPFILES) mem-break.o target.o \
397 putenv.o parse.o language.o $(YYOBJ) \
398 buildsym.o objfiles.o minsyms.o maint.o demangle.o \
399 dbxread.o coffread.o elfread.o dwarfread.o mipsread.o \
400 stabsread.o core.o c-lang.o ch-lang.o m2-lang.o complaints.o \
401 typeprint.o c-typeprint.o ch-typeprint.o m2-typeprint.o \
402 c-valprint.o cp-valprint.o ch-valprint.o m2-valprint.o \
403 serial.o
404
405 RAPP_OBS = rgdb.o rudp.o rserial.o serial.o udp.o $(XDEPFILES)
406
407 TSOBS = inflow.o
408
409 NTSOBS = standalone.o
410
411 TSSTART = /lib/crt0.o
412
413 NTSSTART = kdb-start.o
414
415 SUBDIRS = doc testsuite
416
417 # For now, shortcut the "configure GDB for fewer languages" stuff.
418 YYFILES = c-exp.tab.c m2-exp.tab.c ch-exp.tab.c
419 YYOBJ = c-exp.tab.o m2-exp.tab.o ch-exp.tab.o
420
421 # Prevent Sun make from putting in the machine type. Setting
422 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
423 .c.o:
424 ${CC} -c ${INTERNAL_CFLAGS} $<
425
426 all: gdb
427 @$(MAKE) $(FLAGS_TO_PASS) DO=all "DODIRS=`echo $(SUBDIRS) | sed 's/testsuite//'`" subdir_do
428
429 installcheck:
430 check: force
431 @rootme=`pwd`; export rootme; $(MAKE) $(TARGET_FLAGS_TO_PASS) DO=check DODIRS=testsuite subdir_do
432 info dvi: force
433 @$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
434 install-info: force
435 @$(MAKE) $(FLAGS_TO_PASS) DO=install-info "DODIRS=$(SUBDIRS)" subdir_do
436 clean-info: force
437 @$(MAKE) $(FLAGS_TO_PASS) DO=clean-info "DODIRS=$(SUBDIRS)" subdir_do
438
439 gdb.z:gdb.1
440 nroff -man $(srcdir)/gdb.1 | col -b > gdb.t
441 pack gdb.t ; rm -f gdb.t
442 mv gdb.t.z gdb.z
443
444 install: gdb
445 -parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
446 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
447 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
448 -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
449 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
450 -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
451 -n=`t='$(program_transform_name)'; echo gdb | sed -e "" $$t`; \
452 $(INSTALL_PROGRAM) gdb $(bindir)/$$n; \
453 $(INSTALL_DATA) $(srcdir)/gdb.1 $(man1dir)/$$n.1
454 $(M_INSTALL)
455 @$(MAKE) DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS) subdir_do
456
457 init.c: $(srcdir)/munch $(OBS) $(TSOBS)
458 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(TSOBS) > init.c
459
460 gdb: $(OBS) $(TSOBS) ${ADD_DEPS} ${CDEPS} init.o
461 ${CC-LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o gdb \
462 init.o $(OBS) $(TSOBS) $(ADD_FILES) $(CLIBS) $(LOADLIBES)
463
464 saber_gdb: $(SFILES) $(DEPFILES) copying.c version.c
465 #setopt load_flags $(CFLAGS) -I$(BFD_SRC_DIR) -I${BFD_OBJ_DIR} -DHOST_SYS=SUN4_SYS
466 #load ./init.c $(SFILES)
467 #unload ${srcdir}/c-exp.y ${srcdir}/m2-exp.y ${srcdir}/ch-exp.y
468 #unload ${srcdir}/vx-share/*.h
469 #unload ${srcdir}/nindy-share/[A-Z]*
470 #load c-exp.tab.c m2-exp.tab.c ch-exp.tab.c
471 #load copying.c version.c
472 #load ../opcodes/libopcodes.a
473 #load ../libiberty/libiberty.a
474 #load ../bfd/libbfd.a
475 #load ../readline/libreadline.a
476 #load ../mmalloc/libmmalloc.a
477 #load -ltermcap
478 #load `echo " "$(DEPFILES) | sed -e 's/\.o/.c/g' -e 's, , ../,g'`
479 echo "Load .c corresponding to:" $(DEPFILES)
480
481
482 # This is useful when debugging GDB, because some Unix's don't let you run GDB
483 # on itself without copying the executable. So "make gdb1" will make
484 # gdb and put a copy in gdb1, and you can run it with "gdb gdb1".
485 # Removing gdb1 before the copy is the right thing if gdb1 is open
486 # in another process.
487 gdb1: gdb
488 rm -f gdb1
489 cp gdb gdb1
490
491 # This is a remote stub which runs under unix and starts up an
492 # inferior process. This is at least useful for debugging GDB's
493 # remote support.
494 rapp: $(RAPP_OBS)
495 rm -f rapp_init.c
496 ${srcdir}/munch ${MUNCH_DEFINE} ${RAPP_OBS} > rapp_init.c
497 ${CC-LD} $(LDFLAGS) -o $@ rapp_init.c $(RAPP_OBS)
498
499 # Support for building Makefile out of configured pieces, automatically
500 # generated dependencies, etc. alldeps.mak is a file that contains
501 # "make" variable definitions for all ALLDEPFILES, ALLPARAM, and ALLCONFIG,
502 # all cadged from the current contents of the config subtree.
503
504 # using sort and uniq is not a violation of the GNU coding standards
505 # because this rule is not part of building and installing GDB.
506 alldeps.mak: force
507 rm -f alldeps.mak alldeps*.tmp allparam*.tmp allconfig*.tmp
508 for i in `(cd ${srcdir}; find config -name '*.m[ht]' -print)` ; do \
509 echo $$i >>allconfig.tmp; \
510 awk <${srcdir}/$$i ' \
511 $$1 == "TDEPFILES=" || $$1 == "XDEPFILES=" \
512 || $$1 == "NATDEPFILES=" || $$1 == "SER_HARDWIRE=" { \
513 for (i = 2; i <= NF; i++) \
514 print $$i >> "alldeps.tmp" ; \
515 } \
516 $$1 == "TM_FILE=" || $$1 == "XM_FILE=" || $$1 == "NAT_FILE=" { \
517 print $$2 >> "allparam.tmp" }' ; \
518 done
519 sort <alldeps.tmp | uniq | \
520 sed -e 's/arm-convert.o/arm-convert.s/' \
521 -e 's!^Onindy.o!nindy-share/Onindy.c!' \
522 -e 's!^nindy.o!nindy-share/nindy.c!' \
523 -e 's!ttybreak.o!nindy-share/ttybreak.c!' \
524 -e 's!ttyflush.o!nindy-share/ttyflush.c!' \
525 -e 's!xdr_ld.o!vx-share/xdr_ld.c!' \
526 -e 's!xdr_ptrace.o!vx-share/xdr_ptrace.c!' \
527 -e 's!xdr_rdb.o!vx-share/xdr_rdb.c!' \
528 -e 's!udr.o!29k-share/udi/udr.c!' \
529 -e 's!udip2soc.o!29k-share/udi/udip2soc.c!' \
530 -e '/..\/sim\//d' \
531 -e '/..\/opcodes\//d' \
532 -e 's/\.o/.c/' \
533 >alldeps2.tmp
534 for i in `cat allparam.tmp` ; do \
535 (cd ${srcdir} ; \
536 find config -name $$i -print ) >>allparam2.tmp ; \
537 done
538 echo '# Start of "alldeps.mak" definitions' >>alldeps.mak;
539 sort <alldeps2.tmp | uniq | awk 'BEGIN {printf "ALLDEPFILES="} \
540 NR == 0 {printf "$${srcdir}/" $$0;} \
541 NR != 0 {printf "\\\n" "$${srcdir}/" $$0} \
542 END {printf "\n\n"}' >>alldeps.mak;
543 sort <allparam2.tmp | uniq | awk 'BEGIN {printf "ALLPARAM="} \
544 NR == 0 {printf "$${srcdir}/" $$0;} \
545 NR != 0 {printf "\\\n" "$${srcdir}/" $$0} \
546 END {printf "\n\n"}' >>alldeps.mak;
547 sort <allconfig.tmp | uniq | awk 'BEGIN {printf "ALLCONFIG="} \
548 NR == 0 {printf "$${srcdir}/" $$0;} \
549 NR != 0 {printf "\\\n" "$${srcdir}/" $$0} \
550 END {printf "\n\n"}' >>alldeps.mak;
551 echo '# End of "alldeps.mak" definitions' >>alldeps.mak;
552 rm -f alldeps*.tmp allparam*.tmp allconfig*.tmp
553
554 depend: $(SOURCES) Makefile.in
555 @echo Ignore errors about non-existent system-supplied include files
556 @echo for systems other than the one you are using.
557 @echo Also ignore any errors in arm-convert.s.
558 -$(GCC) -MM -nostdinc -I/usr/include -I${BFD_SRC_DIR} \
559 -I${BFD_OBJ_DIR} -I${READLINE_DIR} $(INTERNAL_CFLAGS) \
560 `ls $(SOURCES) | grep -v '\.[hy]$$' | \
561 sort -u` >depend.tmp
562 #BEGIN COMMENTED OUT CODE -- this should now be taken care of below.
563 # If running in srcdir, translate "./foo.c" into "$srcdir/foo.c" except
564 # for xm.h, tm.h and nm.h. This allows the same "depend" file to be used
565 # by the various subdirectories.
566 # if [ "${srcdir}" = "." ] ; then \
567 # <depend.tmp sed \
568 # -e 's; ./xm.h; xm.h;g' \
569 # -e 's; ./tm.h; tm.h;g' \
570 # -e 's; ./nm.h; nm.h;g' \
571 # -e 's; \./; $${srcdir}/;g' \
572 # -e 's; vx-share/; $${srcdir}/vx-share/;g' \
573 # -e 's; nindy-share/; $${srcdir}/nindy-share/;g' \
574 # -e 's; 29k-share/; $${srcdir}/29k-share/;g' \
575 # >depend.tm2; \
576 # rm depend.tmp; \
577 # mv depend.tm2 depend.tmp; \
578 # fi
579 #END COMMENTED OUT CODE
580 # Make everything which depends on {x,t,n}m.h depend on config.status as
581 # well, in case someone reconfigures gdb out from under an already
582 # compiled gdb.
583 #
584 # Translate SRCDIR/foo.c to $srcdir/foo.c. This allows this "depend" file
585 # to be used by any dir, or included in a distribution. It's possible
586 # we should write the generated copy into SRCDIR like "make headers" does
587 # in bfd. We do not try to quote the regexp, so if SRCDIR/ is "./" it will
588 # also match any single character followed by "/". This is OK.
589 <depend.tmp sed \
590 -e 's; $(INCLUDE_DIR)/; $(INCLUDE_DEP)/;g' \
591 -e 's; $(READLINE_DIR)/; $(READLINE_DEP)/;g' \
592 -e 's; [a-z0-9./]*bfd/; $(BFD_DEP)/;g' \
593 -e 's; \./xm.h; xm.h config.status;g' \
594 -e 's; \./tm.h; tm.h config.status;g' \
595 -e 's; \./nm.h; nm.h config.status;g' \
596 -e 's; ${srcdir}/; $${srcdir}/;g' \
597 -e 's; vx-share/; $${srcdir}/vx-share/;g' \
598 -e 's; nindy-share/; $${srcdir}/nindy-share/;g' \
599 -e 's; 29k-share/; $${srcdir}/29k-share/;g' \
600 >depend.tm3;
601 # OK, get your sed manual out. This script makes the rules in
602 # depend explicitly state the rule, rather than relying on VPATH
603 # or a .c.o implicit rule. This is needed for Sun make, and should
604 # be portable to any make worthy of the name.
605 # There is one exception: the *.tab.c files can exist either in srcdir
606 # or in ., so make sure not to use an explicit rule for them.
607 #
608 # Adding -I${BFD_SRC_DIR} and -I${BFD_OBJ_DIR} is required for all the files
609 # which use BFD internals. This is because some bfd include files are in the
610 # source directory, and some (bfd.h for example) are generated in the bfd
611 # build directory.
612 # Adding -I${READLINE_DIR} is required because the readline header files
613 # are in readline not in include. They probably should be moved.
614 <depend.tm3 sed \
615 -e '/:/h' \
616 -e '/\\$$/b end' \
617 -e 'p' \
618 -e 'g' \
619 -e '/:.*\.tab\.c/d' \
620 -e 's/.*:\(.*\.c\).*/ $${CC} -c $${INTERNAL_CFLAGS} \1/' \
621 -e 's;$${srcdir}/xcoffread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
622 -e 's;$${srcdir}/stabsread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
623 -e 's;$${srcdir}/dwarfread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
624 -e 's;$${srcdir}/elfread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
625 -e 's;$${srcdir}/mipsread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
626 -e 's;$${srcdir}/coffread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
627 -e 's;$${srcdir}/dbxread.c;-I$${BFD_SRC_DIR} -I$${BFD_OBJ_DIR} &;' \
628 -e 's;$${srcdir}/main.c;-I$${READLINE_DIR} &;' \
629 -e ': end' \
630 >depend.tm4;
631 mv depend.tm4 depend
632 # rm depend.tm?
633
634 config.status:
635 @echo "You must configure gdb. Look at the README file for details."
636 @false
637
638 # This checks the configure.in file versus the config/ directory.
639 config-check: config-check-hosts config-check-targets
640 config-check-hosts:
641 grep gdb_host= ${srcdir}/configure.in | \
642 sed -e 's/.*gdb_host=//' -e 's/ ;;$$/.mh/' | sort -u >HOSTconf.o
643 (cd ${srcdir}/config; ls *.mh) >HOSTdir.o
644 diff -u HOSTconf.o HOSTdir.o
645
646 config-check-targets:
647 grep gdb_target= ${srcdir}/configure.in | \
648 sed -e 's/.*gdb_target=//' -e 's/ ;;$$/.mh/' | sort -u >TARGconf.o
649 (cd ${srcdir}/config; ls *.mt) >TARGdir.o
650 diff -u HOSTconf.o HOSTdir.o
651
652 # These are not generated by "make depend" because they only are there
653 # for some machines.
654 # But these rules don't do what we want; we want to hack the foo.o: tm.h
655 # dependency to do the right thing.
656 tm-isi.h tm-sun3.h tm-news.h tm-hp300bsd.h tm-altos.h: tm-m68k.h
657 tm-hp300hpux.h tm-sun2.h tm-3b1.h: tm-m68k.h
658 xm-news1000.h: xm-news.h
659 xm-i386-sv32.h: xm-i386.h
660 tm-i386gas.h: tm-i386.h
661 xm-sun4os4.h: xm-sparc.h
662 tm-sun4os4.h: tm-sparc.h
663 xm-vaxult.h: xm-vax.h
664 xm-vaxbsd.h: xm-vax.h
665
666 kdb: $(NTSSTART) $(OBS) $(NTSOBS) ${ADD_DEPS} ${CDEPS}
667 rm -f init.c
668 $(srcdir)/munch ${MUNCH_DEFINE} $(OBS) $(NTSOBS) > init.c
669 $(CC) $(LDFLAGS) -c init.c $(CLIBS)
670 ld -o kdb $(NTSSTART) $(OBS) $(NTSOBS) init.o $(ADD_FILES) \
671 -lc $(CLIBS)
672
673 # Put the proper machine-specific files first, so M-. on a machine
674 # specific routine gets the one for the correct machine.
675 # The xyzzy stuff below deals with empty DEPFILES
676 TAGS: ${TAGFILES}
677 etags `find ${srcdir}/config -name $(TM_FILE) -print` \
678 `find ${srcdir}/config -name ${XM_FILE} -print` \
679 `find ${srcdir}/config -name ${NAT_FILE} -print` \
680 `for i in yzzy ${DEPFILES}; do \
681 if [ x$$i != xyzzy ]; then \
682 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
683 fi; \
684 done` \
685 ${TAGFILES}
686 tags: TAGS
687
688 # Making distributions of GDB and friends.
689
690 # Make a tar file containing the GDB directory of the distribution.
691 gdb.tar.Z: force_update
692 $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
693 $(MAKE) $(MFLAGS) -f Makefile.in gdb-$(VERSION).tar.Z
694
695 # Make a directory `proto-gdb.dir' that contains an image of the GDB
696 # directory of the distribution, built up with symlinks. Note that this
697 # make target is not directly referenced by any other rules in this makefile,
698 # it is referenced by the makefile in the parent directory.
699 make-proto-gdb.dir: force_update
700 $(MAKE) $(MFLAGS) -f Makefile.in setup-to-dist
701 $(MAKE) $(MFLAGS) -f Makefile make-proto-gdb-1
702
703 # Set up the GDB source directory for distribution, by building all files that
704 # are products of other files.
705 setup-to-dist: update-depend force_update
706 ../configure none
707 (cd doc; $(MAKE) $(MFLAGS) GDBvn.texi)
708 $(MAKE) $(MFLAGS) gdb.info
709 $(MAKE) $(MFLAGS) refcard.ps
710
711 # Update the "depend" and "alldeps.mak" files in a source directory.
712 # We update alldeps.mak first, since it is used to generate the list
713 # of files to be checked for dependencies.
714 update-depend: update-alldeps force_update
715 ../configure none -norecursion
716 (cd ../bfd; ../configure sun4 -norecursion; rm -f stmp-bfd.h)
717 (cd ../bfd; $(MAKE) $(MFLAGS) bfd.h)
718 rm -f depend
719 $(MAKE) $(MFLAGS) depend
720
721 # Update the "alldeps.mak" file in a source directory.
722 update-alldeps: force_update
723 ../configure none -norecursion
724 rm -f alldeps.mak
725 $(MAKE) $(MFLAGS) alldeps.mak
726
727 # Build a tar file from a proto-gdb.dir.
728 gdb-$(VERSION).tar.Z: force_update
729 rm -f gdb.tar gdb-$(VERSION).tar.Z
730 $(MAKE) $(MFLAGS) -f Makefile make-proto-gdb-1
731 ln -s proto-gdb.dir $(DIST)
732 tar chf - $(DIST) | compress >gdb-$(VERSION).tar.Z
733 rm -rf $(DIST) proto-gdb.dir
734
735 # Build a proto-gdb.dir after GDB has been set up for distribution.
736 # This stuff must be run in `Makefile', not `Makefile.in`; we use the makefile
737 # built in the setup-to-dist process, since it defines things like ALLCONFIG
738 # and ALLDEPFILES, that we need.
739 make-proto-gdb-1: ${TARFILES} ${TARDIRS} gdb.info
740 rm -rf proto-gdb.dir
741 mkdir proto-gdb.dir
742 rootme=`pwd`/ ; export rootme ; \
743 for i in `echo ${TARDIRS}`; do \
744 (cd proto-gdb.dir ; \
745 mkdir -p $$i; \
746 cd $$i; \
747 ln -s $${rootme}/$$i/* .; \
748 rm -rf SCCS CVS CVS.adm RCS config.status; \
749 if test -f Makefile.in; then rm Makefile; else true; fi;); \
750 done ; \
751 for i in `echo ${TARFILES}`; do \
752 (cd proto-gdb.dir ; \
753 dir=`dirname $$i`; \
754 if test -d $$dir; then true; else mkdir -p $$dir; fi; \
755 ln -s $${rootme}/$$i $$i;); \
756 done
757 chmod og=u `find . -print`
758
759 # Build a proto-testsuite.dir.
760 make-proto-testsuite.dir: force_update
761 rm -rf proto-testsuite.dir
762 mkdir proto-testsuite.dir
763 rootme=`pwd`/ ; export rootme ; \
764 for i in `find testsuite -type f -print`; do \
765 (cd proto-testsuite.dir ; \
766 dir=`dirname $$i`; \
767 if test -d $$dir; then true; else mkdir -p $$dir; fi; \
768 ln -s $${rootme}/$$i $$i;); \
769 done
770 find proto-testsuite.dir -name Makefile -exec rm {} \;
771 find proto-testsuite.dir -name config.status -exec rm {} \;
772
773 clean:
774 @$(MAKE) $(FLAGS_TO_PASS) DO=clean "DODIRS=$(SUBDIRS)" subdir_do
775 rm -f *.o ${ADD_FILES} *~
776 rm -f init.c version.c
777 rm -f gdb core make.log
778 rm -f gdb[0-9]
779
780 distclean: clean c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS
781 @$(MAKE) $(FLAGS_TO_PASS) DO=distclean "DODIRS=$(SUBDIRS)" subdir_do
782 rm -f tm.h xm.h config.status
783 rm -f y.output yacc.acts yacc.tmp
784 rm -f ${TESTS} Makefile depend
785
786 realclean: clean
787 @$(MAKE) $(FLAGS_TO_PASS) DO=realclean "DODIRS=$(SUBDIRS)" subdir_do
788 rm -f c-exp.tab.c m2-exp.tab.c ch-exp.tab.c TAGS
789 rm -f tm.h xm.h config.status
790 rm -f Makefile depend
791
792 STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
793
794 subdir_do: force
795 @for i in $(DODIRS); do \
796 if [ -f ./$$i/Makefile ] ; then \
797 if (cd ./$$i; \
798 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
799 else exit 1 ; fi ; \
800 else true ; fi ; \
801 done
802
803 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
804 $(SHELL) ./config.status
805
806 force:
807
808 # Documentation!
809 # GDB QUICK REFERENCE (TeX dvi file, CM fonts)
810 refcard.dvi:
811 ( cd ./doc; $(MAKE) refcard.dvi $(FLAGS_TO_PASS) )
812 mv ./doc/refcard.dvi .
813
814 # GDB QUICK REFERENCE (PostScript output, common PS fonts)
815 refcard.ps:
816 ( cd ./doc; $(MAKE) refcard.ps $(FLAGS_TO_PASS) )
817 mv ./doc/refcard.ps .
818
819 # GDB MANUAL: TeX dvi file
820 gdb.dvi:
821 ( cd ./doc; $(MAKE) gdb.dvi $(FLAGS_TO_PASS) )
822 mv ./doc/gdb.dvi .
823
824 # GDB MANUAL: info file
825 gdb.info:
826 ( cd ./doc; $(MAKE) gdb.info $(FLAGS_TO_PASS) )
827 mv ./doc/gdb.info* .
828
829 # Make copying.c from COPYING
830 copying.c: ${srcdir}/COPYING ${srcdir}/copying.awk
831 awk -f ${srcdir}/copying.awk < ${srcdir}/COPYING > copying.c
832
833 version.c: Makefile
834 echo 'char *version = "$(VERSION)";' >version.c
835
836 # c-exp.tab.c is generated in target dir from c-exp.y if it doesn't exist
837 # in srcdir, then compiled in target dir to c-exp.tab.o.
838 # ././c-exp.tab.c is so the command argument will never match $(srcdir)/c-exp.y
839 # (some "makes" rewrite the VPATH into command arguments if they match deps).
840 # Remove bogus decls for malloc/realloc/free which conflict with everything
841 # else.
842 c-exp.tab.o: c-exp.tab.c
843 c-exp.tab.c: $(srcdir)/c-exp.y $(srcdir)/Makefile.in
844 @echo 'Expect 4 shift/reduce conflicts.'
845 ${YACC} ${YFLAGS} $(srcdir)/c-exp.y
846 -sed -e '/extern.*malloc/d' \
847 -e '/extern.*realloc/d' \
848 -e '/extern.*free/d' \
849 -e '/include.*malloc.h/d' \
850 -e 's/malloc/xmalloc/g' \
851 -e 's/realloc/xrealloc/g' \
852 < y.tab.c > ././c-exp.tab.c
853 -rm y.tab.c
854
855 # ch-exp.tab.c is generated in target dir from ch-exp.y if it doesn't exist
856 # in srcdir, then compiled in target dir to ch-exp.tab.o.
857 # Remove bogus decls for malloc/realloc/free which conflict with everything
858 # else.
859 ch-exp.tab.o: ch-exp.tab.c
860 ch-exp.tab.c: $(srcdir)/ch-exp.y $(srcdir)/Makefile.in
861 ${YACC} ${YFLAGS} $(srcdir)/ch-exp.y
862 -sed -e '/extern.*malloc/d' \
863 -e '/extern.*realloc/d' \
864 -e '/extern.*free/d' \
865 -e '/include.*malloc.h/d' \
866 -e 's/malloc/xmalloc/g' \
867 -e 's/realloc/xrealloc/g' \
868 < y.tab.c > ././ch-exp.tab.c
869 -rm y.tab.c
870
871 # m2-exp.tab.c is generated in target dir from m2-exp.y if it doesn't exist
872 # in srcdir, then compiled in target dir to m2-exp.tab.o.
873 # Remove bogus decls for malloc/realloc/free which conflict with everything
874 # else.
875 m2-exp.tab.o: m2-exp.tab.c
876 m2-exp.tab.c: $(srcdir)/m2-exp.y $(srcdir)/Makefile.in
877 ${YACC} ${YFLAGS} $(srcdir)/m2-exp.y
878 -sed -e '/extern.*malloc/d' \
879 -e '/extern.*realloc/d' \
880 -e '/extern.*free/d' \
881 -e '/include.*malloc.h/d' \
882 -e 's/malloc/xmalloc/g' \
883 -e 's/realloc/xrealloc/g' \
884 < y.tab.c > ././m2-exp.tab.c
885 -rm y.tab.c
886
887 lint: $(LINTFILES)
888 $(LINT) $(INCLUDE_CFLAGS) $(LINTFLAGS) $(LINTFILES) \
889 `echo ${DEPFILES} | sed 's/\.o /\.c /g'
890
891 gdb.cxref: $(SFILES)
892 cxref -I. $(SFILES) >gdb.cxref
893
894 force_update:
895
896 # GNU Make has an annoying habit of putting *all* the Makefile variables
897 # into the environment, unless you include this target as a circumvention.
898 # Rumor is that this will be fixed (and this target can be removed)
899 # in GNU Make 4.0.
900 .NOEXPORT:
901
902 # GNU Make 3.63 has a different problem: it keeps tacking command line
903 # overrides onto the definition of $(MAKE). This variable setting
904 # will remove them.
905 MAKEOVERRIDES=
906
907 ## This is ugly, but I don't want GNU make to put these variables in
908 ## the environment. Older makes will see this as a set of targets
909 ## with no dependencies and no actions.
910 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
911
912 # This is the end of "Makefile.in". When built into "Makefile"
913 # by the configure script, two things are added below this point:
914 # alldeps.mak -- definitions of all files that are used in
915 # host- or target-dependent configurations
916 # depend -- what .o files depend on what .c and .h files,
917 # for all configurations.
This page took 0.04672 seconds and 5 git commands to generate.