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