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