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