]>
Commit | Line | Data |
---|---|---|
d8474a9b | 1 | # Makefile for GNU binary-file utilities |
37853673 | 2 | # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. |
d8474a9b PB |
3 | |
4 | # This file is part of GNU binutils. | |
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., 675 Mass Ave, Cambridge, MA 02139, USA. | |
99a42820 | 19 | |
a10d26a1 | 20 | srcdir = . |
84396dcf | 21 | |
d8e89b6b RP |
22 | prefix = /usr/local |
23 | ||
3790af1d | 24 | program_transform_name = |
d8e89b6b RP |
25 | exec_prefix = $(prefix) |
26 | bindir = $(exec_prefix)/bin | |
27 | libdir = $(exec_prefix)/lib | |
f6dddd4e | 28 | tooldir = $(exec_prefix)/$(target_alias) |
d8e89b6b RP |
29 | |
30 | datadir = $(prefix)/lib | |
31 | mandir = $(prefix)/man | |
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 = $(prefix)/info | |
42 | includedir = $(prefix)/include | |
43 | docdir = $(datadir)/doc | |
84396dcf RP |
44 | |
45 | SHELL = /bin/sh | |
d8e89b6b | 46 | |
5ebaf24b | 47 | INSTALL = `cd $(srcdir)/..;pwd`/install.sh -c |
d8e89b6b | 48 | INSTALL_PROGRAM = $(INSTALL) |
c06e55d9 | 49 | INSTALL_DATA = $(INSTALL) |
29078b29 | 50 | INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)' |
238aa238 | 51 | INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1 |
d8e89b6b RP |
52 | |
53 | AR = ar | |
54 | AR_FLAGS = qv | |
55 | CFLAGS = -g | |
d8e89b6b | 56 | MAKEINFO = makeinfo |
c921e2aa | 57 | TEXI2DVI = texi2dvi |
d8e89b6b | 58 | RANLIB = ranlib |
9752f9fd | 59 | BISONFLAGS = -d |
c83497f5 | 60 | TEXI2ROFF=texi2roff |
29078b29 | 61 | MAKEOVERRIDES= |
7bf6856e | 62 | CC_FOR_BUILD = $(CC) |
f50af42b KR |
63 | NM_FOR_TARGET = nm |
64 | NM = $(NM_FOR_TARGET) | |
8d5d0e11 PB |
65 | SYMLINK = ln -s |
66 | ||
e52e2acd | 67 | BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi` |
45212e5e PB |
68 | # Comment these out if using lex. |
69 | LEX_OPTIONS = -I -Cem | |
e2fe2df4 | 70 | LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi` |
45212e5e | 71 | |
8539db10 | 72 | # Distribution version |
69b60892 | 73 | VERSION=cygnus-2.5 |
8539db10 | 74 | # Distribution name |
d8e89b6b | 75 | DIST_NAME=binutils-${VERSION} |
8539db10 | 76 | |
d8e89b6b | 77 | version=`./../gcc/gcc -dumpversion` |
b5132a6b | 78 | |
6b583720 | 79 | # Where to find texinfo.tex to format docn with TeX |
94333f27 | 80 | TEXIDIR = $(srcdir)/../texinfo |
b7a11ec2 | 81 | |
a10d26a1 | 82 | #CC=gcc -Wall |
c06e55d9 | 83 | CC=cc |
06a97fbd | 84 | # these two are almost the same program |
a10d26a1 RP |
85 | AR_PROG=ar |
86 | RANLIB_PROG=ranlib | |
99a42820 | 87 | |
df14d957 ILT |
88 | # objcopy and strip should be the same program |
89 | OBJCOPY_PROG=objcopy | |
06459c06 | 90 | STRIP_PROG=strip.new |
99a42820 | 91 | |
4f15fb27 DM |
92 | STRINGS_PROG=strings |
93 | ||
99a42820 | 94 | # These should all be the same program too. |
a10d26a1 | 95 | SIZE_PROG=size |
06459c06 | 96 | NM_PROG=nm.new |
a10d26a1 | 97 | OBJDUMP_PROG=objdump |
99a42820 | 98 | |
c921e2aa | 99 | # This is the demangler, as a standalone program. |
c06e55d9 | 100 | # Note: This one is used as the installed name too, unlike the above. |
df14d957 | 101 | DEMANGLER_PROG=c++filt |
c921e2aa | 102 | |
29078b29 ILT |
103 | NLMCONV_PROG=nlmconv |
104 | ||
c06e55d9 KR |
105 | SRCONV_PROG=srconv sysdump coffdump |
106 | ||
1cf8bd3f | 107 | MANPAGES= ar nm objdump ranlib size strings strip objcopy nlmconv |
e52e2acd | 108 | |
c06e55d9 | 109 | PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) $(BUILD_NLMCONV) $(BUILD_SRCONV) $(SYSINFO_PROG) |
a01bf1fb | 110 | STAGESTUFF = $(PROGS) *.o |
8d5d0e11 | 111 | # Files that can be generated, but should be in the distribution. |
c06e55d9 | 112 | DISTSTUFF=arparse.c arlex.c nlmheader.c sysinfo.c syslex.c info |
99a42820 | 113 | |
b5775df3 DHW |
114 | # Stuff that goes in tooldir/ if appropriate |
115 | TOOL_PROGS = nm.new strip.new ar ranlib | |
116 | ||
40773f7f | 117 | BASEDIR = $(srcdir)/.. |
bba04d93 DM |
118 | BFDDIR = $(BASEDIR)/bfd |
119 | INCDIR = $(BASEDIR)/include | |
120 | INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) | |
a10d26a1 | 121 | |
a10d26a1 RP |
122 | #### host and target dependant Makefile fragments come in here. |
123 | ### | |
124 | ||
37853673 SS |
125 | ALL_CFLAGS = $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) |
126 | ||
d8e89b6b | 127 | .c.o: |
37853673 | 128 | $(CC) -c $(ALL_CFLAGS) $< |
99a42820 | 129 | |
99a42820 RP |
130 | #\f |
131 | ## Random definitions | |
132 | # Hopefully all these may be flushed once we get configuration down pat. | |
133 | ||
134 | # alloca only needed for systems which don't have it and when cc != gcc. | |
135 | # ALLOCA = alloca.o | |
136 | ||
137 | # nm tries to malloc enough space for the string table. The old GNU malloc | |
138 | # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might | |
139 | # fail unnecessarily. I've also seen some Unix malloc's fail, even when | |
140 | # there is enough memory. So use the new GNU malloc. | |
141 | # MALLOC = gmalloc.o | |
37853673 SS |
142 | # Use this if the system malloc is good enough. |
143 | MALLOC = | |
99a42820 RP |
144 | |
145 | # Use the GNU getopt unless you have problems with it. | |
146 | # The IRIS version could probably benefit from being assembled with | |
147 | # libmalloc rather than the ordinary malloc. | |
bba04d93 | 148 | LIBIBERTY = ../libiberty/libiberty.a |
99a42820 RP |
149 | |
150 | # Code shared by all the binutils. | |
a10d26a1 | 151 | BULIBS = bucomm.o version.o filemode.o |
99a42820 | 152 | |
5a070355 | 153 | ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY) |
99a42820 | 154 | |
bba04d93 DM |
155 | BFD = ../bfd/libbfd.a |
156 | OPCODES = ../opcodes/libopcodes.a | |
f6dddd4e | 157 | |
df14d957 | 158 | RUNTEST = runtest |
03372cf4 | 159 | RUNTESTFLAGS = |
f6dddd4e | 160 | FLAGS_TO_PASS = \ |
4447efa2 ILT |
161 | "CC=$(CC)" \ |
162 | "CFLAGS=$(CFLAGS)" \ | |
df14d957 | 163 | "RUNTEST=$(RUNTEST)" \ |
e52e2acd | 164 | "RUNTESTFLAGS=$(RUNTESTFLAGS)" |
f6dddd4e | 165 | |
99a42820 RP |
166 | #\f |
167 | ## The rules | |
168 | ||
f6dddd4e | 169 | all: $(ADDL_LIBS) $(PROGS) |
4f8b1219 | 170 | |
5903dfae ILT |
171 | # These targets are for the dejagnu testsuites. The file site.exp |
172 | # contains global variables that all the testsuites will use. | |
173 | ||
174 | site.exp: ./config.status Makefile | |
175 | @echo "Making a new config file..." | |
176 | @rm -f ./tmp? | |
177 | @touch site.exp | |
178 | @mv site.exp site.bak | |
179 | @echo "## variables are automatically generated by make ##" > ./tmp0 | |
180 | @echo "# Do not edit here. If you wish to override these" >> ./tmp0 | |
181 | @echo "# values, add them to the last section" >> ./tmp0 | |
182 | @echo "# HOST AND TARGET INFO" >> ./tmp0 | |
183 | @echo "set host_os $(host_os)" >> ./tmp0 | |
184 | @echo "set host_alias $(host_alias)" >> ./tmp0 | |
185 | @echo "set host_cpu $(host_cpu)" >> ./tmp0 | |
186 | @echo "set host_vendor $(host_vendor)" >> ./tmp0 | |
187 | @echo "set target_os $(target_os)" >> ./tmp0 | |
188 | @echo "set target_alias $(target_alias)" >> ./tmp0 | |
189 | @echo "set target_cpu $(target_cpu)" >> ./tmp0 | |
190 | @echo "set target_vendor $(target_vendor)" >> ./tmp0 | |
191 | @echo "set host_triplet $(host_canonical)" >> ./tmp0 | |
192 | @echo "set target_triplet $(target_canonical)" >> ./tmp0 | |
193 | @echo "# DIRECTORY INFO" >> ./tmp0 | |
194 | @echo "set objdir `pwd`" >> ./tmp0 | |
195 | @echo "" >> ./tmp0 | |
196 | @echo "## Variables generated by configure. Do Not Edit ##" >> ./tmp0 | |
197 | @cat ./tmp0 > site.exp | |
198 | @cat site.bak | sed \ | |
199 | -e '1,/^## Variables generated by.*##/ d' >> site.exp | |
200 | -@rm -f ./tmp? | |
201 | ||
202 | check: site.exp | |
203 | r=`pwd`; export r; \ | |
204 | srcroot=`cd ${srcdir}; pwd` ; export srcroot ; \ | |
205 | EXPECT=${EXPECT} ; export EXPECT ; \ | |
206 | if [ -f $$r/../expect/expect ] ; then \ | |
207 | TCL_LIBRARY=$${srcroot}/../tcl/library ; \ | |
9b14c27a | 208 | export TCL_LIBRARY ; else true; fi ; \ |
5903dfae ILT |
209 | $(RUNTEST) --tool binutils --srcdir $(srcdir)/testsuite \ |
210 | $(RUNTESTFLAGS) | |
d8e89b6b | 211 | |
f7ed13c7 | 212 | installcheck: |
7d6cc102 RP |
213 | /bin/sh $(srcdir)/sanity.sh $(bindir) |
214 | ||
d8e89b6b | 215 | info: binutils.info |
a10d26a1 | 216 | |
c921e2aa FF |
217 | dvi: binutils.dvi |
218 | ||
a10d26a1 | 219 | $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD) |
94333f27 | 220 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS) |
99a42820 | 221 | |
df14d957 | 222 | $(OBJCOPY_PROG): $(ADDL_LIBS) objcopy.o not-strip.o $(BFD) |
94333f27 | 223 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(ADDL_LIBS) $(EXTRALIBS) |
d8e89b6b | 224 | |
4f15fb27 | 225 | $(STRINGS_PROG): $(ADDL_LIBS) strings.o $(BFD) |
94333f27 | 226 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRINGS_PROG) strings.o $(ADDL_LIBS) $(EXTRALIBS) |
4f15fb27 | 227 | |
df14d957 | 228 | $(STRIP_PROG): $(ADDL_LIBS) objcopy.o is-strip.o $(BFD) |
94333f27 | 229 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(ADDL_LIBS) $(EXTRALIBS) |
99a42820 | 230 | |
6f88f031 ILT |
231 | $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD) |
232 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS) | |
99a42820 | 233 | |
29078b29 | 234 | $(OBJDUMP_PROG): $(ADDL_LIBS) objdump.o $(BFD) $(OPCODES) |
94333f27 | 235 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS) |
bba04d93 | 236 | |
6f88f031 | 237 | underscore.c: Makefile |
f993f087 | 238 | rm -f underscore.c |
6f88f031 ILT |
239 | echo '/*WARNING: This file is automatically generated!*/' >underscore.t |
240 | echo "int prepends_underscore = $(UNDERSCORE);" >>underscore.t | |
241 | mv -f underscore.t underscore.c | |
f50af42b | 242 | |
3bbea7af | 243 | version.o: version.c Makefile |
bba04d93 DM |
244 | $(CC) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DVERSION='"$(VERSION)"' $(CFLAGS) -c $(srcdir)/version.c |
245 | ||
6f88f031 | 246 | cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h |
bba04d93 | 247 | $(CC) -c -DMAIN $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CFLAGS) $(BASEDIR)/libiberty/cplus-dem.c |
f50af42b | 248 | |
29078b29 | 249 | $(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o version.o |
94333f27 | 250 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o version.o |
c921e2aa | 251 | |
3bbea7af | 252 | arparse.c: arparse.y |
9752f9fd | 253 | $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y |
3bbea7af ILT |
254 | mv -f y.tab.c arparse.c |
255 | mv -f y.tab.h arparse.h | |
256 | ||
257 | # Separate from arparse.c so that a parallel make doesn't try to build | |
258 | # both arparse.c and arparse.h simultaneously. | |
259 | arparse.h: arparse.c | |
d8e89b6b | 260 | |
9752f9fd ME |
261 | arlex.c: arlex.l |
262 | $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l | |
263 | mv lex.yy.c arlex.c | |
d8e89b6b RP |
264 | |
265 | $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o | |
94333f27 | 266 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS) |
d8e89b6b RP |
267 | |
268 | $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD) | |
94333f27 | 269 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS) |
06a97fbd PB |
270 | |
271 | # This rule creates a single binary that switches between ar and ranlib | |
272 | # by looking at argv[0]. Use this kludge to save some disk space. | |
273 | # However, you have to install things by hand. | |
274 | # (That is after 'make install', replace the installed ranlib by a link to ar.) | |
275 | ||
276 | # Alternatively, you can install ranlib.sh as ranlib. | |
277 | ||
278 | ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD) | |
94333f27 | 279 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS) |
a10d26a1 RP |
280 | -rm -f $(RANLIB_PROG) |
281 | -ln $(AR_PROG) $(RANLIB_PROG) | |
99a42820 | 282 | |
df14d957 | 283 | # objcopy and strip in one binary that uses argv[0] to decide its action. |
d8e89b6b | 284 | |
df14d957 | 285 | objcopy_with_strip: $(ADDL_LIBS) objcopy.o maybe-strip.o $(BFD) |
94333f27 | 286 | $(CC) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS) |
a10d26a1 | 287 | -rm -f $(STRIP_PROG) |
df14d957 | 288 | -ln $(OBJCOPY_PROG) $(STRIP_PROG) |
99a42820 | 289 | |
e52e2acd SC |
290 | sysroff.c: sysinfo sysroff.info |
291 | ./sysinfo -c <$(srcdir)/sysroff.info >sysroff.c | |
292 | ./sysinfo -i <$(srcdir)/sysroff.info >>sysroff.c | |
293 | ./sysinfo -g <$(srcdir)/sysroff.info >>sysroff.c | |
f0eebb5f JW |
294 | |
295 | sysroff.h: sysinfo sysroff.info | |
06459c06 | 296 | ./sysinfo -d <$(srcdir)/sysroff.info >sysroff.h |
e52e2acd | 297 | |
3bbea7af ILT |
298 | # Depend upon arparse.c to avoid building both arparse.c and sysinfo.c |
299 | # simultaneously. | |
300 | sysinfo.c: sysinfo.y arparse.c | |
e52e2acd SC |
301 | $(BISON) -tvd $(srcdir)/sysinfo.y |
302 | rm -f sysinfo.c | |
3bbea7af ILT |
303 | mv -f y.tab.c sysinfo.c |
304 | mv -f y.tab.h sysinfo.h | |
305 | ||
306 | # Separate from sysinfo.c so that a parallel make doesn't try to build | |
307 | # both sysinfo.c and sysinfo.h simultaneously. | |
308 | sysinfo.h: sysinfo.c | |
e52e2acd SC |
309 | |
310 | syslex.c : syslex.l | |
311 | $(LEX) $(LEX_OPTIONS) $(srcdir)/syslex.l | |
312 | mv lex.yy.c syslex.c | |
313 | ||
3bbea7af | 314 | sysinfo: sysinfo.o syslex.o |
7bf6856e SC |
315 | $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o |
316 | ||
c06e55d9 | 317 | syslex.o: syslex.c sysinfo.h |
3bbea7af ILT |
318 | if [ -r syslex.c ]; then \ |
319 | $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \ | |
320 | else \ | |
321 | $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/syslex.c ;\ | |
322 | fi | |
7bf6856e SC |
323 | |
324 | sysinfo.o: sysinfo.c | |
3bbea7af ILT |
325 | if [ -r sysinfo.c ]; then \ |
326 | $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \ | |
327 | else \ | |
328 | $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \ | |
329 | fi | |
e52e2acd | 330 | |
f0eebb5f JW |
331 | srconv.o: srconv.c sysroff.h sysroff.c coffgrok.h $(INCDIR)/coff/internal.h \ |
332 | ../bfd/libcoff.h | |
333 | ||
334 | srconv: srconv.o coffgrok.o $(ADDL_LIBS) | |
e52e2acd SC |
335 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ srconv.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS) |
336 | ||
337 | coffdump: coffdump.o coffgrok.o $(ADDL_LIBS) | |
338 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ coffdump.o coffgrok.o $(ADDL_LIBS) $(EXTRALIBS) | |
339 | ||
5903dfae | 340 | sysdump.o: sysdump.c sysroff.h sysroff.c |
f0eebb5f JW |
341 | |
342 | sysdump: sysdump.o $(ADDL_LIBS) | |
e52e2acd SC |
343 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ sysdump.o $(ADDL_LIBS) $(EXTRALIBS) |
344 | ||
3bbea7af ILT |
345 | # Depend upon sysinfo.c to avoid building both nlmheader.c and sysinfo.c |
346 | # simultaneously. | |
347 | nlmheader.c: nlmheader.y sysinfo.c | |
bba04d93 | 348 | $(BISON) $(srcdir)/nlmheader.y |
29078b29 | 349 | rm -f nlmheader.c |
3bbea7af | 350 | mv -f y.tab.c nlmheader.c |
29078b29 | 351 | |
37853673 | 352 | nlmconv.o: nlmconv.c |
4e85e79f | 353 | ldname=`t='$(program_transform_name)'; echo ld | sed -e "s/brokensed/brokensed/" $$t`; \ |
9d11577a | 354 | $(CC) -c -DLD_NAME="\"$${ldname}\"" $(INCLUDES) $(HDEFINES) $(TDEFINES) $(NLMCONV_DEFS) $(CFLAGS) $(srcdir)/nlmconv.c |
37853673 | 355 | |
29078b29 | 356 | $(NLMCONV_PROG): nlmconv.o nlmheader.o $(ADDL_LIBS) $(BFD) |
94333f27 | 357 | $(CC) $(CFLAGS) $(LDFLAGS) -o $@ nlmconv.o nlmheader.o $(ADDL_LIBS) $(EXTRALIBS) |
bba04d93 DM |
358 | |
359 | # This list of dependencies was generated by doing a make with gcc -MM | |
360 | # saving the output in a file and removing the gcc commands | |
361 | # changing "../../devo/binutils/../bfd" to "$(BFDDIR)" | |
362 | # removing "../../devo/binutils/" | |
363 | # changing "../include" to "$(INCDIR)" | |
364 | ||
365 | bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
366 | $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \ | |
37853673 | 367 | $(INCDIR)/fopen-same.h bucomm.h |
bba04d93 DM |
368 | filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
369 | $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \ | |
370 | $(INCDIR)/fopen-same.h | |
371 | size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
372 | $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \ | |
373 | $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h | |
374 | objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
375 | $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \ | |
376 | $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \ | |
377 | $(INCDIR)/dis-asm.h $(INCDIR)/aout/aout64.h \ | |
378 | $(INCDIR)/elf/internal.h $(INCDIR)/aout/stab.def | |
379 | nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
380 | $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \ | |
381 | $(INCDIR)/fopen-same.h bucomm.h $(INCDIR)/getopt.h \ | |
382 | $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ | |
d6a4c375 | 383 | $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h |
bba04d93 DM |
384 | ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
385 | $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \ | |
386 | $(INCDIR)/fopen-same.h bucomm.h $(INCDIR)/aout/ar.h \ | |
387 | $(BFDDIR)/libbfd.h arsup.h | |
388 | arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
389 | $(INCDIR)/obstack.h arsup.h | |
390 | arlex.o: arlex.c ./arparse.h | |
391 | not-ranlib.o: not-ranlib.c | |
392 | arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
393 | $(INCDIR)/obstack.h arsup.h bucomm.h | |
394 | strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
395 | $(INCDIR)/obstack.h bucomm.h | |
396 | objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
397 | $(INCDIR)/obstack.h ../bfd/sysdep.h $(BFDDIR)/hosts/std-host.h \ | |
398 | $(INCDIR)/fopen-same.h bucomm.h | |
399 | is-strip.o: is-strip.c | |
400 | is-ranlib.o: is-ranlib.c | |
401 | not-strip.o: not-strip.c | |
c59fa195 ILT |
402 | nlmheader.o: nlmheader.c ../bfd/bfd.h ../bfd/sysdep.h \ |
403 | $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \ | |
404 | $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h nlmconv.h | |
405 | nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/libiberty.h ../bfd/sysdep.h \ | |
406 | $(BFDDIR)/hosts/std-host.h $(INCDIR)/fopen-same.h bucomm.h \ | |
407 | $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \ | |
408 | $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h \ | |
409 | $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h | |
29078b29 | 410 | |
6a3958b2 RP |
411 | stage1: force |
412 | - mkdir stage1 | |
a01bf1fb | 413 | - mv -f $(STAGESTUFF) stage1 |
6a3958b2 RP |
414 | |
415 | stage2: force | |
416 | - mkdir stage2 | |
a01bf1fb | 417 | - mv -f $(STAGESTUFF) stage2 |
6a3958b2 RP |
418 | |
419 | stage3: force | |
420 | - mkdir stage3 | |
a01bf1fb RP |
421 | - mv -f $(STAGESTUFF) stage3 |
422 | ||
423 | against=stage2 | |
424 | ||
425 | comparison: force | |
426 | for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done | |
6a3958b2 RP |
427 | |
428 | de-stage1: force | |
429 | - (cd stage1 ; mv -f * ..) | |
430 | - rmdir stage1 | |
431 | ||
432 | de-stage2: force | |
433 | - (cd stage2 ; mv -f * ..) | |
434 | - rmdir stage2 | |
435 | ||
436 | de-stage3: force | |
437 | - (cd stage3 ; mv -f * ..) | |
438 | - rmdir stage3 | |
439 | ||
6b583720 RP |
440 | ###################################################################### |
441 | # DOCUMENTATION TARGETS | |
442 | # TeX output | |
2226a090 | 443 | binutils.dvi: $(srcdir)/binutils.texi |
94333f27 | 444 | TEXINPUTS=$(TEXIDIR):$$TEXINPUTS $(TEXI2DVI) $(srcdir)/binutils.texi |
b7a11ec2 | 445 | |
6b583720 | 446 | # info file for online browsing |
2226a090 | 447 | binutils.info: $(srcdir)/binutils.texi |
6141fd50 | 448 | $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi |
b7a11ec2 | 449 | |
c06e55d9 KR |
450 | $(DEMANGLER_PROG).1: cxxfilt.man Makefile |
451 | sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \ | |
452 | > $(DEMANGLER_PROG).1 | |
453 | ||
0c10ff03 | 454 | # different targets for -ms, -mm, -me |
c83497f5 RP |
455 | # Try to use a recent texi2roff. v2 was put on prep in jan91. |
456 | # If you want an index, see texi2roff doc for postprocessing | |
457 | # and add -i to texi2roff invocations below. | |
458 | # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete | |
94333f27 | 459 | # corresponding -e lines when later texi2roff's are current) |
c83497f5 RP |
460 | # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs. |
461 | # + @c's deleted explicitly because texi2roff sees texinfo commands in them | |
462 | # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank | |
463 | # + @alphaenumerate is ridiculously new, turned into @enumerate | |
464 | ||
0c10ff03 | 465 | # roff output (-ms) |
2226a090 | 466 | binutils.ms: $(srcdir)/binutils.texi |
6b583720 RP |
467 | sed -e '/\\input texinfo/d' \ |
468 | -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ | |
c83497f5 RP |
469 | -e '/^@ifinfo/,/^@end ifinfo/d' \ |
470 | -e '/^@c/d' \ | |
2226a090 | 471 | -e 's/{.*,,/{/' \ |
c83497f5 RP |
472 | -e 's/@ / /g' \ |
473 | -e 's/^@alphaenumerate/@enumerate/g' \ | |
474 | -e 's/^@end alphaenumerate/@end enumerate/g' \ | |
2226a090 | 475 | $(srcdir)/binutils.texi | \ |
d8e89b6b | 476 | $(TEXI2ROFF) -ms | \ |
c83497f5 RP |
477 | sed -e 's/---/\\(em/g' \ |
478 | >binutils.ms | |
6b583720 | 479 | |
0c10ff03 | 480 | # roff output (-mm) |
c83497f5 RP |
481 | # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer, |
482 | # try leaving them in | |
2226a090 | 483 | binutils.mm: $(srcdir)/binutils.texi |
0c10ff03 RP |
484 | sed -e '/\\input texinfo/d' \ |
485 | -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ | |
c83497f5 RP |
486 | -e '/^@ifinfo/,/^@end ifinfo/d' \ |
487 | -e '/^@c/d' \ | |
2226a090 RP |
488 | -e 's/{.*,,/{/' \ |
489 | -e '/@noindent/d' \ | |
c83497f5 RP |
490 | -e 's/@ / /g' \ |
491 | -e 's/^@alphaenumerate/@enumerate/g' \ | |
492 | -e 's/^@end alphaenumerate/@end enumerate/g' \ | |
2226a090 | 493 | $(srcdir)/binutils.texi | \ |
d8e89b6b | 494 | $(TEXI2ROFF) -mm | \ |
2226a090 RP |
495 | sed -e 's/---/\\(em/g' \ |
496 | >binutils.mm | |
0c10ff03 RP |
497 | |
498 | # roff output (-me) | |
2226a090 | 499 | binutils.me: $(srcdir)/binutils.texi |
0c10ff03 RP |
500 | sed -e '/\\input texinfo/d' \ |
501 | -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ | |
c83497f5 RP |
502 | -e '/^@ifinfo/,/^@end ifinfo/d' \ |
503 | -e '/^@c/d' \ | |
2226a090 | 504 | -e 's/{.*,,/{/' \ |
c83497f5 RP |
505 | -e 's/@ / /g' \ |
506 | -e 's/^@alphaenumerate/@enumerate/g' \ | |
507 | -e 's/^@end alphaenumerate/@end enumerate/g' \ | |
2226a090 | 508 | $(srcdir)/binutils.texi | \ |
d8e89b6b | 509 | $(TEXI2ROFF) -me | \ |
c83497f5 RP |
510 | sed -e 's/---/\\(em/g' \ |
511 | >binutils.me | |
0c10ff03 RP |
512 | |
513 | ||
6b583720 RP |
514 | ###################################################################### |
515 | ||
8d5d0e11 | 516 | mostlyclean: |
3f97524f | 517 | -rm -f *.o *~ \#* core binutils.?? binutils.??? |
69b60892 | 518 | -rm -rf tmpdir |
8d5d0e11 | 519 | clean: mostlyclean |
f50af42b | 520 | -rm -f $(PROGS) underscore.c |
94333f27 | 521 | distclean: |
c06e55d9 | 522 | -rm -f Makefile config.status sysdep.h *.o *~ \#* core y.* \ |
94333f27 | 523 | binutils.?? binutils.??s binutils.aux binutils.log binutils.toc |
7bf6856e | 524 | -rm -f $(PROGS) underscore.c |
94333f27 | 525 | realclean: clean distclean |
8d5d0e11 | 526 | -rm -f $(DISTSTUFF) TAGS |
99a42820 RP |
527 | |
528 | etags tags: TAGS | |
529 | ||
6a3958b2 | 530 | TAGS: force |
bba04d93 | 531 | etags $(INCDIR)/*.h $(srcdir)/*.[hc] |
99a42820 | 532 | |
c06e55d9 | 533 | install: all $(DEMANGLER_PROG).1 |
238aa238 | 534 | for i in $(PROGS) ; do \ |
06459c06 | 535 | $(INSTALL_XFORM) $$i $(bindir)/`echo $$i | sed -e 's/.new//'` ; \ |
99a42820 | 536 | done |
238aa238 DZ |
537 | for i in $(MANPAGES) ; do \ |
538 | $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \ | |
de53632c | 539 | done |
1cf8bd3f | 540 | $(INSTALL_XFORM1) $(DEMANGLER_PROG).1 $(man1dir)/$(DEMANGLER_PROG).1 |
3f97524f | 541 | -if [ -d $(tooldir) ]; then \ |
c063fc45 | 542 | if [ -d $(tooldir)/bin ]; then true; else mkdir $(tooldir)/bin; fi; \ |
b5775df3 | 543 | for i in $(TOOL_PROGS) ; do \ |
c063fc45 KR |
544 | j=`echo $$i | sed -e 's/.new//'`; \ |
545 | rm -f $(tooldir)/bin/$$j; \ | |
546 | k=`t='$(program_transform_name)'; echo $$j | sed -e s/x/x/ $$t`; \ | |
547 | ln $(bindir)/$$k $(tooldir)/bin/$$j >/dev/null 2>/dev/null \ | |
548 | || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$j; \ | |
549 | done; \ | |
550 | else true; fi | |
c83497f5 | 551 | |
c59fa195 ILT |
552 | # This little path search is required because in the FSF net releases, |
553 | # the info files are included in the source tree, and that may not be | |
554 | # the same as the build directory. | |
94333f27 | 555 | install-info: binutils.info |
c59fa195 ILT |
556 | if [ -r binutils.info ]; then \ |
557 | dir=. ; \ | |
558 | else \ | |
559 | dir=$(srcdir) ; \ | |
560 | fi ; \ | |
c06e55d9 | 561 | for i in `cd $$dir; echo binutils.info*` ; do \ |
6f383ce5 | 562 | $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \ |
84396dcf | 563 | done |
99a42820 | 564 | |
d8e89b6b RP |
565 | clean-info: |
566 | -rm -rf *.info* | |
567 | ||
e2fe2df4 | 568 | # Making a dist: |
ee948e4e PB |
569 | # cvs rtag binutils-x-yy ld+utils |
570 | # cvs co -r binutils-x-yy ld+utils | |
e2fe2df4 PB |
571 | # Sanitize |
572 | # cd {HERE}; make dist [-f Makefile.in] | |
573 | ||
f50af42b | 574 | dist: $(DIST_NAME).tar.z |
8539db10 | 575 | |
8d5d0e11 PB |
576 | diststuff: $(DISTSTUFF) |
577 | ||
f50af42b | 578 | $(DIST_NAME).tar.z: |
b27d2046 | 579 | cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME) |
8d5d0e11 PB |
580 | make diststuff -f Makefile.in |
581 | cd ../ld; make diststuff -f Makefile.in | |
3f97524f | 582 | cd ../gprof; make diststuff -f Makefile.in |
7f7b0a77 | 583 | cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex . |
2e8adbd7 PB |
584 | # Take out texinfo from configurable dirs |
585 | mv ../configure.in tmp; \ | |
586 | sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp | |
587 | cd ..; chmod og=u `find . -print` | |
f50af42b | 588 | cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z |
b27d2046 | 589 | rm -rf ../../$(DIST_NAME) |
8539db10 | 590 | |
99a42820 RP |
591 | #----------------------------------------------------------------------------- |
592 | # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT | |
593 | # | |
594 | # 'VERSION' file must be present and contain a string of the form "x.y" | |
595 | #----------------------------------------------------------------------------- | |
596 | ||
597 | ver960.c: FORCE | |
598 | rm -f ver960.c | |
599 | echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c | |
600 | ||
601 | ||
602 | # Dummy target to force execution of dependent targets. | |
603 | # | |
6a3958b2 | 604 | force: |
99a42820 RP |
605 | |
606 | # Target to uncomment host-specific lines in this makefile. Such lines must | |
607 | # have the following string beginning in column 1: #__<hostname>__# | |
608 | # Original Makefile is backed up as 'Makefile.old'. | |
609 | # | |
610 | # Invoke with: make make HOST=xxx | |
611 | # | |
612 | make: | |
613 | -@if test $(HOST)x = x ; then \ | |
614 | echo '\aSpecify "make make HOST=???"'; \ | |
615 | exit 1; \ | |
616 | fi ; \ | |
617 | grep -s "^#The next line was generated by 'make make'" Makefile; \ | |
618 | if test $$? = 0 ; then \ | |
619 | echo "\aMakefile has already been processed with 'make make'";\ | |
620 | exit 1; \ | |
621 | fi ; \ | |
622 | mv -f Makefile Makefile.old; \ | |
623 | echo "#The next line was generated by 'make make'" >Makefile ; \ | |
624 | echo "HOST=$(HOST)" >>Makefile ; \ | |
625 | echo >>Makefile ; \ | |
626 | sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile | |
627 | ||
f1eb48b6 | 628 | Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag) |
a26878d1 | 629 | $(SHELL) ./config.status |
99a42820 RP |
630 | |
631 | ### Local Variables: *** | |
632 | ### mode:fundamental *** | |
633 | ### page-delimiter: "^#\f" *** | |
634 | ### End: *** | |
635 | ### end of file |