]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - binutils/Makefile.in
Look in the right place for bfd.h.
[thirdparty/binutils-gdb.git] / binutils / Makefile.in
1 # Makefile for GNU binary-file utilities
2 # Copyright (C) 1989-1992 Free Software Foundation, Inc.
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.
19
20 srcdir = .
21
22 prefix = /usr/local
23
24 program_transform_name =
25 exec_prefix = $(prefix)
26 bindir = $(exec_prefix)/bin
27 libdir = $(exec_prefix)/lib
28 tooldir = $(exec_prefix)/$(target_alias)
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
44
45 SHELL = /bin/sh
46
47 INSTALL = `cd $(srcdir)/..;pwd`/install.sh -c
48 INSTALL_PROGRAM = $(INSTALL)
49 INSTALL_DATA = $(INSTALL)
50 INSTALL_XFORM = $(INSTALL) -t='$(program_tranform_name)'
51 INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1
52
53 AR = ar
54 AR_FLAGS = qv
55 CFLAGS = -g
56 MAKEINFO = makeinfo
57 TEXI2DVI = texi2dvi
58 RANLIB = ranlib
59 BISONFLAGS = -d
60 TEXI2ROFF=texi2roff
61
62 NM_FOR_TARGET = nm
63 NM = $(NM_FOR_TARGET)
64 SYMLINK = ln -s
65
66 BISON = `if [ -f ../byacc/byacc ] ; then echo ../byacc/byacc ; else echo byacc ; fi`
67 # Comment these out if using lex.
68 LEX_OPTIONS = -I -Cem
69 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
70
71 # Distribution version
72 VERSION=2.2
73 # Distribution name
74 DIST_NAME=binutils-${VERSION}
75
76 version=`./../gcc/gcc -dumpversion`
77
78 # Where to find texinfo.tex to format docn with TeX
79 TEXIDIR = $(srcdir)/../texinfo/fsf
80
81 MANPAGES= ar nm objdump ranlib size strip c++filt objcopy
82
83 #CC=gcc -Wall
84 # these two are almost the same program
85 AR_PROG=ar
86 RANLIB_PROG=ranlib
87
88 # objcopy and strip should be the same program
89 OBJCOPY_PROG=objcopy
90 STRIP_PROG=strip
91
92 # These should all be the same program too.
93 SIZE_PROG=size
94 NM_PROG=nm
95 OBJDUMP_PROG=objdump
96
97 # This is the demangler, as a standalone program.
98 DEMANGLER_PROG=c++filt
99
100 PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG)
101 STAGESTUFF = $(PROGS) *.o
102 # Files that can be generated, but should be in the distribution.
103 DISTSTUFF=arparse.c arlex.c
104
105 BASEDIR = $(srcdir)/..
106 LIBDIR = ./../bfd
107 OPCODEDIR = ./../opcodes
108
109 #### host and target dependant Makefile fragments come in here.
110 ###
111
112 INCLUDES = -I. -I$(srcdir) -I../bfd -I../include -I$(BASEDIR)/include -I$(BASEDIR)/bfd
113
114 .c.o:
115 $(CC) -c $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $<
116
117 #\f
118 ## Random definitions
119 # Hopefully all these may be flushed once we get configuration down pat.
120
121 # alloca only needed for systems which don't have it and when cc != gcc.
122 # ALLOCA = alloca.o
123
124 # nm tries to malloc enough space for the string table. The old GNU malloc
125 # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might
126 # fail unnecessarily. I've also seen some Unix malloc's fail, even when
127 # there is enough memory. So use the new GNU malloc.
128 # MALLOC = gmalloc.o
129
130 # Use the GNU getopt unless you have problems with it.
131 # The IRIS version could probably benefit from being assembled with
132 # libmalloc rather than the ordinary malloc.
133 LIBIBERTY_SRC_DIR = $(srcdir)/../libiberty
134 LIBIBERTY_BIN_DIR = ./../libiberty
135 LIBIBERTY = $(LIBIBERTY_BIN_DIR)/libiberty.a
136
137 # Code shared by all the binutils.
138 BULIBS = bucomm.o version.o filemode.o
139
140 ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY)
141
142 BFD = $(LIBDIR)/libbfd.a
143 OPCODES = $(OPCODEDIR)/libopcodes.a
144
145 RUNTEST = runtest
146 RUNTESTFLAGS =
147 FLAGS_TO_PASS = \
148 "CC=$(CC)" \
149 "CFLAGS=$(CFLAGS)" \
150 "RUNTEST=$(RUNTEST)" \
151 "RUNTESTFLAGS=$(RUNTESTFLAGS) \
152 SIZE=`if [ -f $$rootme/$(SIZE_PROG) ] ; then echo $$rootme/$(SIZE_PROG) ; else echo $(SIZE_PROG); fi` \
153 OBJCOPY=`if [ -f $$rootme/$(OBJCOPY_PROG) ] ; then echo $$rootme/$(OBJCOPY_PROG) ; else echo $(OBJCOPY_PROG); fi` \
154 NM=`if [ -f $$rootme/$(NM_PROG) ] ; then echo $$rootme/$(NM_PROG) ; else echo $(NM_PROG); fi` \
155 AR=`if [ -f $$rootme/$(AR_PROG) ] ; then echo $$rootme/$(AR_PROG) ; else echo $(AR_PROG); fi` \
156 OBJDUMP=`if [ -f $$rootme/$(OBJDUMP_PROG) ] ; then echo $$rootme/$(OBJDUMP_PROG) ; else echo $(OBJDUMP_PROG); fi` \
157 STRIP=`if [ -f $$rootme/$(STRIP_PROG) ] ; then echo $$rootme/$(STRIP_PROG) ; else echo $(STRIP_PROG); fi` \
158 RANLIB=`if [ -f $$rootme/$(RANLIB_PROG) ] ; then echo $$rootme/$(RANLIB_PROG) ; else echo $(RANLIB_PROG); fi` \
159 DEMANGLE=`if [ -f $$rootme/$(DEMANGLER_PROG) ] ; then echo $$rootme/$(DEMANGLER_PROG) ; else echo $(DEMANGLER_PROG); fi`"
160
161 #\f
162 ## The rules
163
164 all: $(ADDL_LIBS) $(PROGS)
165
166 testsuite:
167 if [ -f testsuite/Makefile.in ]; then \
168 (rootme=`pwd`/ ; export rootme ; \
169 rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
170 cd testsuite; $(MAKE) FLAGS_TO_PASS=$(FLAGS_TO_PASS)); \
171 else true ; fi
172
173 check: force
174 rootme=`pwd`; export rootme; cd testsuite ; \
175 $(MAKE) check $(FLAGS_TO_PASS)
176 # /bin/sh $(srcdir)/sanity.sh .
177
178 installcheck:
179 /bin/sh $(srcdir)/sanity.sh $(bindir)
180
181 info: binutils.info
182
183 dvi: binutils.dvi
184
185 #$(BFD):$(LIBDIR)/../common/*.c
186 # (cd $(LIBDIR); make)
187
188 $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
189 $(CC) $(LDFLAGS) $(CFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(EXTRALIBS)
190
191 $(OBJCOPY_PROG): $(ADDL_LIBS) objcopy.o not-strip.o $(BFD)
192 $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJCOPY_PROG) objcopy.o not-strip.o $(ADDL_LIBS) $(EXTRALIBS)
193
194 $(STRIP_PROG): $(ADDL_LIBS) objcopy.o is-strip.o $(BFD)
195 $(CC) $(LDFLAGS) $(CFLAGS) -o $(STRIP_PROG) objcopy.o is-strip.o $(ADDL_LIBS) $(EXTRALIBS)
196
197 $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
198 $(CC) $(LDFLAGS) $(CFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(EXTRALIBS)
199
200 $(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(BFD) $(OPCODES)
201 $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(OPCODES) $(ADDL_LIBS) $(EXTRALIBS)
202
203 underscore.c:
204 echo "int xxy_us_dummy;" >dummy.c
205 $(CC) -c dummy.c
206 echo '/*WARNING: This file is automatically generated!*/' >underscore.c
207 if [ "`$(NM) dummy.o | grep _xxy_us_dummy ; true`" != "" ]; then \
208 echo "int prepends_underscore = 1;" >>underscore.c; \
209 else \
210 echo "int prepends_underscore = 0;" >>underscore.c; \
211 fi
212 -rm -f dummy.c dummy.o
213
214 cplus-dem.o: $(LIBIBERTY_SRC_DIR)/cplus-dem.c
215 $(CC) -c -DMAIN $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(LIBIBERTY_SRC_DIR)/cplus-dem.c
216
217 $(DEMANGLER_PROG): cplus-dem.o $(LIBIBERTY) underscore.o
218 $(CC) $(LDFLAGS) $(CFLAGS) -o $(DEMANGLER_PROG) cplus-dem.o $(LIBIBERTY) $(EXTRALIBS) underscore.o
219
220 arparse.c:arparse.y
221 $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y
222 -mv y.tab.c arparse.c
223 -mv y.tab.h arparse.h
224
225
226 arlex.c: arlex.l
227 $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
228 mv lex.yy.c arlex.c
229
230 $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
231 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
232
233 $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
234 $(CC) $(LDFLAGS) $(CFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
235
236 # This rule creates a single binary that switches between ar and ranlib
237 # by looking at argv[0]. Use this kludge to save some disk space.
238 # However, you have to install things by hand.
239 # (That is after 'make install', replace the installed ranlib by a link to ar.)
240
241 # Alternatively, you can install ranlib.sh as ranlib.
242
243 ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
244 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
245 -rm -f $(RANLIB_PROG)
246 -ln $(AR_PROG) $(RANLIB_PROG)
247
248 # objcopy and strip in one binary that uses argv[0] to decide its action.
249
250 objcopy_with_strip: $(ADDL_LIBS) objcopy.o maybe-strip.o $(BFD)
251 $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
252 -rm -f $(STRIP_PROG)
253 -ln $(OBJCOPY_PROG) $(STRIP_PROG)
254
255 stage1: force
256 - mkdir stage1
257 - mv -f $(STAGESTUFF) stage1
258
259 stage2: force
260 - mkdir stage2
261 - mv -f $(STAGESTUFF) stage2
262
263 stage3: force
264 - mkdir stage3
265 - mv -f $(STAGESTUFF) stage3
266
267 against=stage2
268
269 comparison: force
270 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
271
272 de-stage1: force
273 - (cd stage1 ; mv -f * ..)
274 - rmdir stage1
275
276 de-stage2: force
277 - (cd stage2 ; mv -f * ..)
278 - rmdir stage2
279
280 de-stage3: force
281 - (cd stage3 ; mv -f * ..)
282 - rmdir stage3
283
284 ######################################################################
285 # DOCUMENTATION TARGETS
286 # TeX output
287 binutils.dvi: $(srcdir)/binutils.texi
288 $(TEXI2DVI) $(srcdir)/binutils.texi
289
290 # info file for online browsing
291 binutils.info: $(srcdir)/binutils.texi
292 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
293
294 # different targets for -ms, -mm, -me
295 # Try to use a recent texi2roff. v2 was put on prep in jan91.
296 # If you want an index, see texi2roff doc for postprocessing
297 # and add -i to texi2roff invocations below.
298 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
299 # correspondint -e lines when later texi2roff's are current)
300 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
301 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
302 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
303 # + @alphaenumerate is ridiculously new, turned into @enumerate
304
305 # roff output (-ms)
306 binutils.ms: $(srcdir)/binutils.texi
307 sed -e '/\\input texinfo/d' \
308 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
309 -e '/^@ifinfo/,/^@end ifinfo/d' \
310 -e '/^@c/d' \
311 -e 's/{.*,,/{/' \
312 -e 's/@ / /g' \
313 -e 's/^@alphaenumerate/@enumerate/g' \
314 -e 's/^@end alphaenumerate/@end enumerate/g' \
315 $(srcdir)/binutils.texi | \
316 $(TEXI2ROFF) -ms | \
317 sed -e 's/---/\\(em/g' \
318 >binutils.ms
319
320 # roff output (-mm)
321 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
322 # try leaving them in
323 binutils.mm: $(srcdir)/binutils.texi
324 sed -e '/\\input texinfo/d' \
325 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
326 -e '/^@ifinfo/,/^@end ifinfo/d' \
327 -e '/^@c/d' \
328 -e 's/{.*,,/{/' \
329 -e '/@noindent/d' \
330 -e 's/@ / /g' \
331 -e 's/^@alphaenumerate/@enumerate/g' \
332 -e 's/^@end alphaenumerate/@end enumerate/g' \
333 $(srcdir)/binutils.texi | \
334 $(TEXI2ROFF) -mm | \
335 sed -e 's/---/\\(em/g' \
336 >binutils.mm
337
338 # roff output (-me)
339 binutils.me: $(srcdir)/binutils.texi
340 sed -e '/\\input texinfo/d' \
341 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
342 -e '/^@ifinfo/,/^@end ifinfo/d' \
343 -e '/^@c/d' \
344 -e 's/{.*,,/{/' \
345 -e 's/@ / /g' \
346 -e 's/^@alphaenumerate/@enumerate/g' \
347 -e 's/^@end alphaenumerate/@end enumerate/g' \
348 $(srcdir)/binutils.texi | \
349 $(TEXI2ROFF) -me | \
350 sed -e 's/---/\\(em/g' \
351 >binutils.me
352
353
354 ######################################################################
355
356 mostlyclean:
357 -rm -f *.o *~ \#* core binutils.?? binutils.???
358 clean: mostlyclean
359 -rm -f $(PROGS) underscore.c
360 distclean: clean
361 -rm -f Makefile config.status sysdep.h
362 realclean: distclean
363 -rm -f $(DISTSTUFF) TAGS
364
365 etags tags: TAGS
366
367 TAGS: force
368 etags $(INCDIR)/*.h $(BFDSRC)/*.[hc] *.[hc]
369
370 install: all
371 for i in $(PROGS) ; do \
372 $(INSTALL_XFORM) $$i $(bindir)/$$i ; \
373 done
374 for i in $(MANPAGES) ; do \
375 $(INSTALL_XFORM1) $(srcdir)/$$i.1 $(man1dir)/$$i.1 ; \
376 done
377 -if [ -d $(tooldir) ]; then \
378 if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
379 for i in nm strip ar ranlib; do \
380 rm -f $(tooldir)/bin/$$i; \
381 ln $(bindir)/`t='$(program_transform_name)'; echo $$i | sed -e "" $$t` $(tooldir)/bin/$$i \
382 || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$i; \
383 done; \
384 else true; fi
385
386 install-info: info
387 for i in *.info* ; do \
388 $(INSTALL_DATA) $$i $(infodir)/$$i ; \
389 done
390
391 clean-info:
392 -rm -rf *.info*
393
394 # Making a dist:
395 # cvs rtag binutils-x-yy ld+utils
396 # cvs co -r binutils-x-yy ld+utils
397 # Sanitize
398 # cd {HERE}; make dist [-f Makefile.in]
399
400 dist: $(DIST_NAME).tar.z
401
402 diststuff: $(DISTSTUFF)
403
404 $(DIST_NAME).tar.z:
405 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
406 make diststuff -f Makefile.in
407 cd ../ld; make diststuff -f Makefile.in
408 cd ../gprof; make diststuff -f Makefile.in
409 cd ../texinfo; mv texinfo.tex ..; rm -rf *; mv ../texinfo.tex .
410 # Take out texinfo from configurable dirs
411 mv ../configure.in tmp; \
412 sed -e '/^host_tools=/s/texinfo //' <tmp >../configure.in; rm tmp
413 cd ..; chmod og=u `find . -print`
414 cd ../..; tar chf - $(DIST_NAME) | gzip >$(DIST_NAME).tar.z
415 rm -rf ../../$(DIST_NAME)
416
417 # These get around a bug in Sun Make in SunOS 4.1.1
418 alloca.o:alloca.c
419 ar.o: ar.c
420 arsup.o: arsup.c
421 bucomm.o: bucomm.c
422 objcopy.o: objcopy.c
423 filemode.o:filemode.c
424 getopt.o:getopt.c
425 getopt1.o:getopt1.c
426 gmalloc.o:gmalloc.c
427 is-ranlib.o:is-ranlib.c
428 is-strip.o:is-strip.c
429 maybe-ranlib.o:maybe-ranlib.c
430 maybe-strip.o:maybe-strip.c
431 nm.o: nm.c
432 not-ranlib.o:not-ranlib.c
433 not-strip.o:not-strip.c
434 objdump.o: objdump.c
435 size.o: size.c
436 strip.o:strip.c
437 version.o: $(srcdir)/version.c
438 $(CC) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DVERSION='"$(VERSION)"' -c $(srcdir)/version.c
439
440 #-----------------------------------------------------------------------------
441 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
442 #
443 # 'VERSION' file must be present and contain a string of the form "x.y"
444 #-----------------------------------------------------------------------------
445
446 ver960.c: FORCE
447 rm -f ver960.c
448 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
449
450
451 # Dummy target to force execution of dependent targets.
452 #
453 force:
454
455 # Target to uncomment host-specific lines in this makefile. Such lines must
456 # have the following string beginning in column 1: #__<hostname>__#
457 # Original Makefile is backed up as 'Makefile.old'.
458 #
459 # Invoke with: make make HOST=xxx
460 #
461 make:
462 -@if test $(HOST)x = x ; then \
463 echo '\aSpecify "make make HOST=???"'; \
464 exit 1; \
465 fi ; \
466 grep -s "^#The next line was generated by 'make make'" Makefile; \
467 if test $$? = 0 ; then \
468 echo "\aMakefile has already been processed with 'make make'";\
469 exit 1; \
470 fi ; \
471 mv -f Makefile Makefile.old; \
472 echo "#The next line was generated by 'make make'" >Makefile ; \
473 echo "HOST=$(HOST)" >>Makefile ; \
474 echo >>Makefile ; \
475 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
476
477 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
478 $(SHELL) ./config.status
479
480 ### Local Variables: ***
481 ### mode:fundamental ***
482 ### page-delimiter: "^#\f" ***
483 ### End: ***
484 ### end of file