2002-02-14 Daniel Jacobowitz <drow@mvista.com>
[deliverable/binutils-gdb.git] / gdb / gdbserver / Makefile.in
1 # Copyright 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
2 # 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
3
4 # This file is part of GDB.
5
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.
10 #
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.
15 #
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.
19
20 prefix = @prefix@
21 exec_prefix = @exec_prefix@
22
23 host_alias = @host_alias@
24 target_alias = @target_alias@
25 program_transform_name = @program_transform_name@
26 bindir = @bindir@
27 libdir = @libdir@
28 tooldir = $(libdir)/$(target_alias)
29
30 datadir = @datadir@
31 mandir = @mandir@
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
41 infodir = @infodir@
42 htmldir = $(prefix)/html
43 includedir = @includedir@
44
45 SHELL = /bin/sh
46
47 INSTALL = @INSTALL@
48 INSTALL_PROGRAM = @INSTALL_PROGRAM@
49 INSTALL_DATA = @INSTALL_DATA@
50
51 AR = ar
52 AR_FLAGS = qv
53 RANLIB = ranlib
54
55 # If you are compiling with GCC, make sure that either 1) You use the
56 # -traditional flag, or 2) You have the fixed include files where GCC
57 # can reach them. Otherwise the ioctl calls in inflow.c
58 # will be incorrectly compiled. The "fixincludes" script in the gcc
59 # distribution will fix your include files up.
60 #CC=cc
61 #CC=gcc -traditional
62 GCC=gcc
63
64 # Directory containing source files. Don't clean up the spacing,
65 # this exact string is matched for by the "configure" script.
66 srcdir = @srcdir@
67 VPATH = @srcdir@
68
69 # It is also possible that you will need to add -I/usr/include/sys to the
70 # CFLAGS section if your system doesn't have fcntl.h in /usr/include (which
71 # is where it should be according to Posix).
72
73 # Set this up with gcc if you have gnu ld and the loader will print out
74 # line numbers for undefinded refs.
75 #CC-LD=gcc -static
76 CC-LD=${CC}
77
78 # Where is the "include" directory? Traditionally ../include or ./include
79 INCLUDE_DIR = ${srcdir}/../../include
80 INCLUDE_DEP = $$(INCLUDE_DIR)
81
82 # Where are the BFD library?
83 BFD_DIR = ../../bfd
84 BFD = $(BFD_DIR)/libbfd.a
85 BFD_SRC = $(srcdir)/$(BFD_DIR)
86 BFD_CFLAGS = -I$(BFD_DIR) -I$(BFD_SRC)
87
88 # Where is the source dir for the READLINE library? Traditionally in .. or .
89 # (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
90 READLINE_DIR = ${srcdir}/../readline
91 READLINE_DEP = $$(READLINE_DIR)
92
93 # All the includes used for CFLAGS and for lint.
94 # -I. for config files.
95 # -I.. for gdb's config files (especially config.h)
96 # -I${srcdir} possibly for regex.h also.
97 # -I${srcdir}/config for more generic config files.
98 # -I$(srcdir)/../regformats for regdef.h
99 INCLUDE_CFLAGS = -I. -I.. -I${srcdir} -I${srcdir}/.. \
100 -I$(srcdir)/../regformats
101
102 # M{H,T}_CFLAGS, if defined, has host- and target-dependent CFLAGS
103 # from the config/ directory.
104 GLOBAL_CFLAGS = ${MT_CFLAGS} ${MH_CFLAGS}
105 #PROFILE_CFLAGS = -pg
106
107 # CFLAGS is specifically reserved for setting from the command line
108 # when running make. I.E. "make CFLAGS=-Wmissing-prototypes".
109 CFLAGS = -g
110 # INTERNAL_CFLAGS is the aggregate of all other *CFLAGS macros.
111 INTERNAL_CFLAGS = ${CFLAGS} ${GLOBAL_CFLAGS} ${PROFILE_CFLAGS} \
112 ${INCLUDE_CFLAGS} ${BFD_CFLAGS} -DGDBSERVER
113
114 # LDFLAGS is specifically reserved for setting from the command line
115 # when running make.
116
117 # Perhaps should come from parent Makefile
118 VERSION = gdbserver-4.12.3
119 DIST=gdb
120
121 LINT=/usr/5bin/lint
122 LINTFLAGS= $(BFD_CFLAGS)
123
124 # Host and target-dependent makefile fragments come in here.
125 @host_makefile_frag@
126 @target_makefile_frag@
127 # End of host and target-dependent makefile fragments
128
129 # All source files that go into linking GDB remote server.
130
131 SFILES = $(srcdir)/low-hppabsd.c $(srcdir)/low-linux.c $(srcdir)/low-lynx.c \
132 $(srcdir)/low-nbsd.c $(srcdir)/low-sim.c $(srcdir)/low-sparc.c \
133 $(srcdir)/low-sun3.c $(srcdir)/utils.c $(srcdir)/server.c \
134 $(srcdir)/remote-utils.c
135
136 DEPFILES = $(GDBSERVER_DEPFILES)
137
138 SOURCES = $(SFILES) $(ALLDEPFILES)
139 TAGFILES = $(SOURCES) ${HFILES} ${ALLPARAM} ${POSSLIBS}
140
141 OBS = utils.o $(GDBSERVER_DEPFILES) server.o remote-utils.o regcache.o
142
143 # Prevent Sun make from putting in the machine type. Setting
144 # TARGET_ARCH to nothing works for SunOS 3, 4.0, but not for 4.1.
145 .c.o:
146 ${CC} -c ${INTERNAL_CFLAGS} $<
147
148 all: gdbserver gdbreplay
149
150 # Traditionally "install" depends on "all". But it may be useful
151 # not to; for example, if the user has made some trivial change to a
152 # source file and doesn't care about rebuilding or just wants to save the
153 # time it takes for make to check that all is up to date.
154 # install-only is intended to address that need.
155 install: all install-only
156 install-only:
157 n=`echo gdbserver | sed '$(program_transform_name)'`; \
158 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
159 $(INSTALL_PROGRAM) gdbserver $(bindir)/$$n; \
160 $(INSTALL_DATA) $(srcdir)/gdbserver.1 $(man1dir)/$$n.1
161
162 uninstall: force
163 n=`echo gdbserver | sed '$(program_transform_name)'`; \
164 if [ x$$n = x ]; then n=gdbserver; else true; fi; \
165 rm -f $(bindir)/$$n $(man1dir)/$$n.1
166
167 installcheck:
168 check:
169 info dvi:
170 install-info:
171 html:
172 install-html:
173 clean-info:
174
175 gdbserver: $(OBS) ${ADD_DEPS} ${CDEPS}
176 rm -f gdbserver
177 ${CC-LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o gdbserver $(OBS) \
178 $(GDBSERVER_LIBS) $(XM_CLIBS)
179
180 gdbreplay: gdbreplay.o
181 rm -f gdbreplay
182 ${CC-LD} $(GLOBAL_CFLAGS) $(LDFLAGS) -o gdbreplay gdbreplay.o \
183 $(XM_CLIBS)
184
185 # Put the proper machine-specific files first, so M-. on a machine
186 # specific routine gets the one for the correct machine.
187 # The xyzzy stuff below deals with empty DEPFILES
188 TAGS: ${TAGFILES}
189 etags `find ${srcdir}/../config -name $(TM_FILE) -print` \
190 `find ${srcdir}/../config -name ${XM_FILE} -print` \
191 `find ${srcdir}/../config -name ${NAT_FILE} -print` \
192 `for i in yzzy ${DEPFILES}; do \
193 if [ x$$i != xyzzy ]; then \
194 echo ${srcdir}/$$i | sed -e 's/\.o$$/\.c/' ; \
195 fi; \
196 done` \
197 ${TAGFILES}
198 tags: TAGS
199
200 clean:
201 rm -f *.o ${ADD_FILES} *~
202 rm -f gdbserver gdbreplay core make.log
203 rm -f reg-arm.c reg-i386.c reg-ia64.c reg-m68k.c reg-mips.c
204 rm -f reg-ppc.c reg-sh.c
205
206 distclean: clean
207 rm -f nm.h tm.h xm.h config.status
208 rm -f Makefile
209
210 maintainer-clean realclean: clean
211 rm -f nm.h tm.h xm.h config.status
212 rm -f Makefile
213
214 STAGESTUFF=${OBS} ${TSOBS} ${NTSOBS} ${ADD_FILES} init.c init.o version.c gdb
215
216 Makefile: Makefile.in config.status @frags@
217 $(SHELL) ./config.status
218
219 config.status: configure
220 $(SHELL) ./config.status --recheck
221
222 force:
223
224 version.c: Makefile
225 echo 'char *version = "$(VERSION)";' >version.c
226
227 # GNU Make has an annoying habit of putting *all* the Makefile variables
228 # into the environment, unless you include this target as a circumvention.
229 # Rumor is that this will be fixed (and this target can be removed)
230 # in GNU Make 4.0.
231 .NOEXPORT:
232
233 # GNU Make 3.63 has a different problem: it keeps tacking command line
234 # overrides onto the definition of $(MAKE). This variable setting
235 # will remove them.
236 MAKEOVERRIDES=
237
238 ## This is ugly, but I don't want GNU make to put these variables in
239 ## the environment. Older makes will see this as a set of targets
240 ## with no dependencies and no actions.
241 unexport CHILLFLAGS CHILL_LIB CHILL_FOR_TARGET :
242
243 regdat_sh = $(srcdir)/../regformats/regdat.sh
244 regdef_h = $(srcdir)/../regformats/regdef.h
245 regcache_h = $(srcdir)/regcache.h
246 server_h = $(srcdir)/server.h $(regcache_h)
247
248 server.o: server.c $(server_h)
249 remote-utils.o: remote-utils.c $(server_h)
250 utils.o: utils.c $(server_h)
251 regcache.o: regcache.c $(server_h) $(regdef_h)
252
253 linux-low.o: linux-low.c $(server_h)
254 linux-arm-low.o: linux-arm-low.c $(server_h)
255 linux-i386-low.o: linux-i386-low.c $(server_h)
256 linux-ia64-low.o: linux-ia64-low.c $(server_h)
257 linux-mips-low.o: linux-mips-low.c $(server_h)
258 linux-ppc-low.o: linux-ppc-low.c $(server_h)
259 linux-sh-low.o: linux-sh-low.c $(server_h)
260
261 # OBSOLETE TARGETS
262 # OBSOLETE # low-lynx.o : ${srcdir}/low-lynx.c ${srcdir}/server.h
263 # OBSOLETE # low-nbsd.o : ${srcdir}/low-nbsd.c ${srcdir}/server.h
264 # OBSOLETE # low-sim.o : ${srcdir}/low-sim.c ${srcdir}/server.h
265 # OBSOLETE # low-sparc.o : $(srcdir)/low-sparc.c $(srcdir)/server.h
266 # OBSOLETE # low-sun3.o : $(srcdir)/low-sun3.c $(srcdir)/server.h
267 # OBSOLETE # low-hppabsd.o : $(srcdir)/low-hppabsd.c $(srcdir)/server.h
268
269 reg-arm.o : reg-arm.c $(regdef_h)
270 reg-arm.c : $(srcdir)/../regformats/reg-arm.dat $(regdat_sh)
271 sh $(regdat_sh) $(srcdir)/../regformats/reg-arm.dat reg-arm.c
272 reg-i386.o : reg-i386.c $(regdef_h)
273 reg-i386.c : $(srcdir)/../regformats/reg-i386.dat $(regdat_sh)
274 sh $(regdat_sh) $(srcdir)/../regformats/reg-i386.dat reg-i386.c
275 reg-ia64.o : reg-ia64.c $(regdef_h)
276 reg-ia64.c : $(srcdir)/../regformats/reg-ia64.dat $(regdat_sh)
277 sh $(regdat_sh) $(srcdir)/../regformats/reg-ia64.dat reg-ia64.c
278 reg-m68k.o : reg-m68k.c $(regdef_h)
279 reg-m68k.c : $(srcdir)/../regformats/reg-m68k.dat $(regdat_sh)
280 sh $(regdat_sh) $(srcdir)/../regformats/reg-m68k.dat reg-m68k.c
281 reg-mips.o : reg-mips.c $(regdef_h)
282 reg-mips.c : $(srcdir)/../regformats/reg-mips.dat $(regdat_sh)
283 sh $(regdat_sh) $(srcdir)/../regformats/reg-mips.dat reg-mips.c
284 reg-ppc.o : reg-ppc.c $(regdef_h)
285 reg-ppc.c : $(srcdir)/../regformats/reg-ppc.dat $(regdat_sh)
286 sh $(regdat_sh) $(srcdir)/../regformats/reg-ppc.dat reg-ppc.c
287 reg-sh.o : reg-sh.c $(regdef_h)
288 reg-sh.c : $(srcdir)/../regformats/reg-sh.dat $(regdat_sh)
289 sh $(regdat_sh) $(srcdir)/../regformats/reg-sh.dat reg-sh.c
290
291 # This is the end of "Makefile.in".
This page took 0.037049 seconds and 5 git commands to generate.