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