1 # Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
2 # 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4 # This file is part of GDB.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21 exec_prefix = @
exec_prefix@
23 host_alias
= @host_alias@
24 target_alias
= @target_alias@
25 program_transform_name
= @program_transform_name@
28 tooldir
= $(libdir)/$(target_alias
)
32 man1dir = $(mandir)/man1
33 man2dir = $(mandir)/man2
34 man3dir = $(mandir)/man3
35 man4dir = $(mandir)/man4
36 man5dir = $(mandir)/man5
37 man6dir = $(mandir)/man6
38 man7dir = $(mandir)/man7
39 man8dir = $(mandir)/man8
40 man9dir = $(mandir)/man9
42 htmldir
= $(prefix)/html
43 includedir = @
includedir@
48 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
49 INSTALL_DATA
= @INSTALL_DATA@
53 # Directory containing source files. Don't clean up the spacing,
54 # this exact string is matched for by the "configure" script.
58 # It is also possible that you will need to add -I/usr/include/sys to the
59 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
60 # is where it should be according to Posix).
62 # Set this up with gcc if you have gnu ld and the loader will print out
63 # line numbers for undefinded refs.
67 # Where is the "include" directory? Traditionally ../include or ./include
68 INCLUDE_DIR
= ${srcdir}/..
/..
/include
69 INCLUDE_DEP
= $$(INCLUDE_DIR
)
71 # Where are the BFD library?
73 BFD
= $(BFD_DIR
)/libbfd.a
74 BFD_SRC
= $(srcdir)/$(BFD_DIR
)
75 BFD_CFLAGS
= -I
$(BFD_DIR
) -I
$(BFD_SRC
)
77 # Where is the source dir for the READLINE library? Traditionally in .. or .
78 # (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
79 READLINE_DIR
= ${srcdir}/..
/readline
80 READLINE_DEP
= $$(READLINE_DIR
)
82 # All the includes used for CFLAGS and for lint.
83 # -I. for config files.
84 # -I${srcdir} for our headers.
85 # -I$(srcdir)/../regformats for regdef.h.
86 INCLUDE_CFLAGS
= -I.
-I
${srcdir} -I
$(srcdir)/..
/regformats
-I
$(INCLUDE_DIR
)
88 # M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
89 # from the config/ directory.
90 GLOBAL_CFLAGS
= ${MT_CFLAGS} ${MH_CFLAGS}
95 # CFLAGS is specifically reserved for setting from the command line
96 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
99 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
100 INTERNAL_CFLAGS
= $(WARN_CFLAGS
) ${CFLAGS} ${GLOBAL_CFLAGS} \
101 ${PROFILE_CFLAGS} ${INCLUDE_CFLAGS} ${BFD_CFLAGS}
103 # LDFLAGS is specifically reserved for setting from the command line
107 # Perhaps should come from parent Makefile
108 VERSION
= gdbserver-4.12
.3
112 LINTFLAGS
= $(BFD_CFLAGS
)
114 # All source files that go into linking GDB remote server.
116 SFILES
= $(srcdir)/gdbreplay.c
$(srcdir)/inferiors.c \
117 $(srcdir)/mem-break.c
$(srcdir)/proc-service.c
$(srcdir)/regcache.c \
118 $(srcdir)/remote-utils.c
$(srcdir)/server.c
$(srcdir)/target.c \
119 $(srcdir)/thread-db.c
$(srcdir)/utils.c \
120 $(srcdir)/linux-arm-low.c
$(srcdir)/linux-i386-low.c \
121 $(srcdir)/i387-fp.c \
122 $(srcdir)/linux-ia64-low.c
$(srcdir)/linux-low.c \
123 $(srcdir)/linux-m68k-low.c
$(srcdir)/linux-mips-low.c \
124 $(srcdir)/linux-ppc-low.c
$(srcdir)/linux-s390-low.c \
125 $(srcdir)/linux-sh-low.c
$(srcdir)/linux-x86-64-low.c
127 DEPFILES
= @GDBSERVER_DEPFILES@
130 TAGFILES
= $(SOURCES
) ${HFILES} ${ALLPARAM} ${POSSLIBS}
132 OBS
= inferiors.o regcache.o remote-utils.o server.o signals.o target.o \
136 GDBSERVER_LIBS
= @GDBSERVER_LIBS@
138 # Prevent Sun make from putting in the machine type. Setting
139 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
141 ${CC} -c
${INTERNAL_CFLAGS} $<
143 all: gdbserver gdbreplay
145 # Traditionally "install" depends on "all". But it may be useful
146 # not to; for example, if the user has made some trivial change to a
147 # source file and doesn't care about rebuilding or just wants to save the
148 # time it takes for make to check that all is up to date.
149 # install-only is intended to address that need.
150 install: all install-only
152 n
=`echo gdbserver | sed '$(program_transform_name)'`; \
153 if
[ x
$$n = x
]; then n
=gdbserver
; else true
; fi
; \
154 $(INSTALL_PROGRAM
) gdbserver
$(bindir)/$$n; \
155 $(INSTALL_DATA
) $(srcdir)/gdbserver
.1 $(man1dir)/$$n.1
158 n
=`echo gdbserver | sed '$(program_transform_name)'`; \
159 if
[ x
$$n = x
]; then n
=gdbserver
; else true
; fi
; \
160 rm -f
$(bindir)/$$n $(man1dir)/$$n.1
170 gdbserver
: $(OBS
) ${ADD_DEPS} ${CDEPS}
172 ${CC-LD
} $(GLOBAL_CFLAGS
) $(LDFLAGS
) -o gdbserver
$(OBS
) \
173 $(GDBSERVER_LIBS
) $(XM_CLIBS
)
175 gdbreplay
: gdbreplay.o
177 ${CC-LD
} $(GLOBAL_CFLAGS
) $(LDFLAGS
) -o gdbreplay gdbreplay.o \
180 # Put the proper machine-specific files first, so M-. on a machine
181 # specific routine gets the one for the correct machine.
182 # The xyzzy stuff below deals with empty DEPFILES
184 etags
`find ${srcdir}/../config -name $(TM_FILE) -print` \
185 `find ${srcdir}/../config -name ${XM_FILE} -print` \
186 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
187 `for i in yzzy ${DEPFILES}; do \
188 if [ x$$i != xyzzy ]; then \
189 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
196 rm -f
*.o
${ADD_FILES} *~
197 rm -f gdbserver gdbreplay core make.log
198 rm -f reg-arm.c reg-i386.c reg-ia64.c reg-m68k.c reg-mips.c
199 rm -f reg-ppc.c reg-sh.c reg-x86-64.c reg-i386-linux.c
202 rm -f nm.h tm.h xm.h config.status
205 maintainer-clean
realclean: clean
206 rm -f nm.h tm.h xm.h config.status
209 STAGESTUFF
=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
211 config.h
: stamp-h
; @true
212 stamp-h
: config.in config.status
213 CONFIG_FILES
="" $(SHELL
) .
/config.status
215 Makefile
: Makefile.in config.status
216 CONFIG_HEADERS
="" $(SHELL
) .
/config.status
218 config.status
: configure configure.srv
219 $(SHELL
) .
/config.status
--recheck
224 echo
'char *version = "$(VERSION)";' >version.c
226 # GNU Make has an annoying habit of putting *all* the Makefile variables
227 # into the environment, unless you include this target as a circumvention.
228 # Rumor is that this will be fixed (and this target can be removed)
232 # GNU Make 3.63 has a different problem: it keeps tacking command line
233 # overrides onto the definition of $(MAKE). This variable setting
237 gdb_proc_service_h
= $(srcdir)/..
/gdb_proc_service.h
$(srcdir)/..
/gregset.h
238 regdat_sh
= $(srcdir)/..
/regformats
/regdat.sh
239 regdef_h
= $(srcdir)/..
/regformats
/regdef.h
240 regcache_h
= $(srcdir)/regcache.h
241 server_h
= $(srcdir)/server.h
$(regcache_h
) config.h
$(srcdir)/target.h \
242 $(srcdir)/mem-break.h
244 inferiors.o
: inferiors.c
$(server_h
)
245 mem-break.o
: mem-break.c
$(server_h
)
246 proc-service.o
: proc-service.c
$(server_h
) $(gdb_proc_service_h
)
247 regcache.o
: regcache.c
$(server_h
) $(regdef_h
)
248 remote-utils.o
: remote-utils.c terminal.h
$(server_h
)
249 server.o
: server.c
$(server_h
)
250 target.o
: target.c
$(server_h
)
251 thread-db.o
: thread-db.c
$(server_h
) $(gdb_proc_service_h
)
252 utils.o
: utils.c
$(server_h
)
254 signals.o
: ..
/signals
/signals.c
$(server_h
)
255 $(CC
) -c
$(CPPFLAGS
) $(INTERNAL_CFLAGS
) $< -DGDBSERVER
257 i387-fp.o
: i387-fp.c
$(server_h
)
259 linux_low_h
= $(srcdir)/linux-low.h
261 linux-low.o
: linux-low.c
$(linux_low_h
) $(server_h
)
262 $(CC
) -c
$(CPPFLAGS
) $(INTERNAL_CFLAGS
) $< @USE_THREAD_DB@
264 linux-arm-low.o
: linux-arm-low.c
$(linux_low_h
) $(server_h
)
265 linux-i386-low.o
: linux-i386-low.c
$(linux_low_h
) $(server_h
)
266 linux-ia64-low.o
: linux-ia64-low.c
$(linux_low_h
) $(server_h
)
267 linux-mips-low.o
: linux-mips-low.c
$(linux_low_h
) $(server_h
)
268 linux-ppc-low.o
: linux-ppc-low.c
$(linux_low_h
) $(server_h
)
269 linux-s390-low.o
: linux-s390-low.c
$(linux_low_h
) $(server_h
)
270 linux-sh-low.o
: linux-sh-low.c
$(linux_low_h
) $(server_h
)
271 linux-x86-64-low.o
: linux-x86-64-low.c
$(linux_low_h
) $(server_h
)
273 reg-arm.o
: reg-arm.c
$(regdef_h
)
274 reg-arm.c
: $(srcdir)/..
/regformats
/reg-arm.dat
$(regdat_sh
)
275 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-arm.dat reg-arm.c
276 reg-i386.o
: reg-i386.c
$(regdef_h
)
277 reg-i386.c
: $(srcdir)/..
/regformats
/reg-i386.dat
$(regdat_sh
)
278 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-i386.dat reg-i386.c
279 reg-i386-linux.o
: reg-i386-linux.c
$(regdef_h
)
280 reg-i386-linux.c
: $(srcdir)/..
/regformats
/reg-i386-linux.dat
$(regdat_sh
)
281 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-i386-linux.dat reg-i386-linux.c
282 reg-ia64.o
: reg-ia64.c
$(regdef_h
)
283 reg-ia64.c
: $(srcdir)/..
/regformats
/reg-ia64.dat
$(regdat_sh
)
284 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-ia64.dat reg-ia64.c
285 reg-m68k.o
: reg-m68k.c
$(regdef_h
)
286 reg-m68k.c
: $(srcdir)/..
/regformats
/reg-m68k.dat
$(regdat_sh
)
287 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-m68k.dat reg-m68k.c
288 reg-mips.o
: reg-mips.c
$(regdef_h
)
289 reg-mips.c
: $(srcdir)/..
/regformats
/reg-mips.dat
$(regdat_sh
)
290 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-mips.dat reg-mips.c
291 reg-ppc.o
: reg-ppc.c
$(regdef_h
)
292 reg-ppc.c
: $(srcdir)/..
/regformats
/reg-ppc.dat
$(regdat_sh
)
293 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-ppc.dat reg-ppc.c
294 reg-s390.o
: reg-s390.c
$(regdef_h
)
295 reg-s390.c
: $(srcdir)/..
/regformats
/reg-s390.dat
$(regdat_sh
)
296 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-s390.dat reg-s390.c
297 reg-s390x.o
: reg-s390x.c
$(regdef_h
)
298 reg-s390x.c
: $(srcdir)/..
/regformats
/reg-s390x.dat
$(regdat_sh
)
299 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-s390x.dat reg-s390x.c
300 reg-sh.o
: reg-sh.c
$(regdef_h
)
301 reg-sh.c
: $(srcdir)/..
/regformats
/reg-sh.dat
$(regdat_sh
)
302 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-sh.dat reg-sh.c
303 reg-x86-64.o
: reg-x86-64.c
$(regdef_h
)
304 reg-x86-64.c
: $(srcdir)/..
/regformats
/reg-x86-64.dat
$(regdat_sh
)
305 sh
$(regdat_sh
) $(srcdir)/..
/regformats
/reg-x86-64.dat reg-x86-64.c
307 # This is the end of "Makefile.in".