1 # Makefile for GNU binary-file utilities
2 # Copyright (C) 1989-1992 Free Software Foundation, Inc.
4 # This file is part of GNU binutils.
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.
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.
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.
26 exec_prefix = $(prefix)
27 bindir = $(exec_prefix)/bin
28 libdir = $(exec_prefix)/lib
31 datadir = $(prefix)/lib
32 mandir = $(prefix)/man
33 man1dir = $(mandir)/man1
34 man2dir = $(mandir)/man2
35 man3dir = $(mandir)/man3
36 man4dir = $(mandir)/man4
37 man5dir = $(mandir)/man5
38 man6dir = $(mandir)/man6
39 man7dir = $(mandir)/man7
40 man8dir = $(mandir)/man8
41 man9dir = $(mandir)/man9
42 infodir = $(prefix)/info
43 includedir = $(prefix)/include
44 docdir
= $(datadir)/doc
49 INSTALL_PROGRAM
= $(INSTALL
)
50 INSTALL_DATA
= $(INSTALL
)
60 BISON
= `if [ -f ../byacc/byacc ] ; then echo ../byacc/byacc ; else echo byacc ; fi`
61 # Comment these out if using lex.
63 LEX
= `if [ -f ../flex/flex ] ; then echo ../flex/flex -S../flex/flex.skel ; else echo flex ; fi`
65 # Distribution version
68 DIST_NAME
=binutils-
${VERSION}
70 version
=`./../gcc/gcc -dumpversion`
72 # Where to find texinfo.tex to format docn with TeX
73 TEXIDIR
= $(srcdir)/..
/texinfo
/fsf
75 MANPAGES
= ar.1 nm
.1 objdump
.1 ranlib
.1 size
.1 strip.1
78 # these two are almost the same program
82 # copy and strip should be the same program
86 # These should all be the same program too.
91 PROGS
= $(SIZE_PROG
) $(OBJDUMP_PROG
) $(NM_PROG
) $(AR_PROG
) $(STRIP_PROG
) $(RANLIB_PROG
)
92 STAGESTUFF
= $(PROGS
) *.o
94 BASEDIR
= $(srcdir)/..
97 #### host and target dependant Makefile fragments come in here.
100 INCDIR
= $(BASEDIR
)/include
103 $(CC
) -c
$(CFLAGS
) -I.
-I
$(srcdir) -I
$(INCDIR
) $(HDEFINES
) $(TDEFINES
) $<
105 # When adding .o files, to make VPATH work in Sun Make, you have to
106 # also add a foo.o: foo.c line at the bottom of the file.
107 DISASMS
= m68k-pinsn.o i960-pinsn.o i386-pinsn.o sparc-pinsn.o am29k-pinsn.o
110 ## Random definitions
111 # Hopefully all these may be flushed once we get configuration down pat.
113 # alloca only needed for systems which don't have it and when cc != gcc.
116 # nm tries to malloc enough space for the string table. The old GNU malloc
117 # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might
118 # fail unnecessarily. I've also seen some Unix malloc's fail, even when
119 # there is enough memory. So use the new GNU malloc.
122 # Use the GNU getopt unless you have problems with it.
123 # The IRIS version could probably benefit from being assembled with
124 # libmalloc rather than the ordinary malloc.
125 LIBIBERTY
= .
/..
/libiberty
/libiberty.a
127 # Code shared by all the binutils.
128 BULIBS
= bucomm.o version.o filemode.o
130 ADDL_LIBS
= $(MALLOC
) $(BULIBS
) $(BFD
) $(LIBIBERTY
)
132 BFD
= $(LIBDIR
)/libbfd.a
136 all: $(ADDL_LIBS
) $(PROGS
)
139 /bin
/sh
$(srcdir)/sanity.sh .
142 /bin
/sh
$(srcdir)/sanity.sh
$(bindir)
146 #$(BFD):$(LIBDIR)/../common/*.c
147 # (cd $(LIBDIR); make)
149 $(SIZE_PROG
): $(ADDL_LIBS
) size.o
$(BFD
)
150 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(SIZE_PROG
) size.o
$(ADDL_LIBS
) $(LOADLIBES
)
152 $(COPY_PROG
): $(ADDL_LIBS
) copy.o not-strip.o
$(BFD
)
153 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(COPY_PROG
) copy.o not-strip.o
$(ADDL_LIBS
) $(LOADLIBES
)
155 $(STRIP_PROG
): $(ADDL_LIBS
) copy.o is-strip.o
$(BFD
)
156 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(STRIP_PROG
) copy.o is-strip.o
$(ADDL_LIBS
) $(LOADLIBES
)
158 $(NM_PROG
): $(ADDL_LIBS
) nm.o
$(BFD
)
159 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(NM_PROG
) nm.o
$(ADDL_LIBS
) $(LOADLIBES
)
161 $(OBJDUMP_PROG
): $(ADDL_LIBS
) size.o objdump.o
$(DISASMS
) $(BFD
)
162 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(OBJDUMP_PROG
) objdump.o
$(DISASMS
) $(ADDL_LIBS
) $(LOADLIBES
)
165 $(BISON
) $(BISONFLAGS
) $(srcdir)/arparse.y
166 -mv y.tab.c arparse.c
167 -mv y.tab.h arparse.h
171 $(LEX
) $(LEX_OPTIONS
) $(srcdir)/arlex.l
174 $(AR_PROG
): $(ADDL_LIBS
) ar.o arparse.o arlex.o not-ranlib.o
$(BFD
) arsup.o
175 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(AR_PROG
) ar.o arparse.o arlex.o arsup.o not-ranlib.o
$(ADDL_LIBS
) $(LOADLIBES
)
177 $(RANLIB_PROG
): $(ADDL_LIBS
) ar.o is-ranlib.o arparse.o arlex.o arsup.o
$(BFD
)
178 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(RANLIB_PROG
) ar.o arparse.o arlex.o arsup.o is-ranlib.o
$(ADDL_LIBS
) $(LOADLIBES
)
180 # This rule creates a single binary that switches between ar and ranlib
181 # by looking at argv[0]. Use this kludge to save some disk space.
182 # However, you have to install things by hand.
183 # (That is after 'make install', replace the installed ranlib by a link to ar.)
185 # Alternatively, you can install ranlib.sh as ranlib.
187 ar_with_ranlib
: $(ADDL_LIBS
) ar.o maybe-ranlib.o
$(BFD
)
188 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(AR_PROG
) ar.o maybe-ranlib.o
$(ADDL_LIBS
) $(LOADLIBES
)
189 -rm -f
$(RANLIB_PROG
)
190 -ln
$(AR_PROG
) $(RANLIB_PROG
)
192 # copy and strip in one binary that uses argv[0] to decide its action.
194 copy_with_strip
: $(ADDL_LIBS
) copy.o maybe-strip.o
$(BFD
)
195 $(CC
) $(LDFLAGS
) $(CFLAGS
) -o
$(COPY_PROG
) copy.o maybe-strip.o
$(ADDL_LIBS
) $(LOADLIBES
)
197 -ln
$(COPY_PROG
) $(STRIP_PROG
)
201 - mv
-f
$(STAGESTUFF
) stage1
205 - mv
-f
$(STAGESTUFF
) stage2
209 - mv
-f
$(STAGESTUFF
) stage3
214 for i in
$(STAGESTUFF
) ; do cmp
$$i $(against
)/$$i ; done
217 - (cd stage1
; mv
-f
* ..
)
221 - (cd stage2
; mv
-f
* ..
)
225 - (cd stage3
; mv
-f
* ..
)
228 ######################################################################
229 # DOCUMENTATION TARGETS
231 binutils.
dvi: $(srcdir)/binutils.texi
232 TEXINPUTS
=${TEXIDIR}:.
:$$TEXINPUTS tex $(srcdir)/binutils.texi
234 TEXINPUTS
=${TEXIDIR}:.
:$$TEXINPUTS tex $(srcdir)/binutils.texi
236 # info file for online browsing
237 binutils.
info: $(srcdir)/binutils.texi
238 $(MAKEINFO
) -o binutils.
info $(srcdir)/binutils.texi
240 # different targets for -ms, -mm, -me
241 # Try to use a recent texi2roff. v2 was put on prep in jan91.
242 # If you want an index, see texi2roff doc for postprocessing
243 # and add -i to texi2roff invocations below.
244 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
245 # correspondint -e lines when later texi2roff's are current)
246 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
247 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
248 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
249 # + @alphaenumerate is ridiculously new, turned into @enumerate
252 binutils.ms
: $(srcdir)/binutils.texi
253 sed
-e
'/\\input texinfo/d' \
254 -e
'/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
255 -e
'/^@ifinfo/,/^@end ifinfo/d' \
259 -e
's/^@alphaenumerate/@enumerate/g' \
260 -e
's/^@end alphaenumerate/@end enumerate/g' \
261 $(srcdir)/binutils.texi | \
263 sed
-e
's/---/\\(em/g' \
267 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
268 # try leaving them in
269 binutils.mm
: $(srcdir)/binutils.texi
270 sed
-e
'/\\input texinfo/d' \
271 -e
'/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
272 -e
'/^@ifinfo/,/^@end ifinfo/d' \
277 -e
's/^@alphaenumerate/@enumerate/g' \
278 -e
's/^@end alphaenumerate/@end enumerate/g' \
279 $(srcdir)/binutils.texi | \
281 sed
-e
's/---/\\(em/g' \
285 binutils.me
: $(srcdir)/binutils.texi
286 sed
-e
'/\\input texinfo/d' \
287 -e
'/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
288 -e
'/^@ifinfo/,/^@end ifinfo/d' \
292 -e
's/^@alphaenumerate/@enumerate/g' \
293 -e
's/^@end alphaenumerate/@end enumerate/g' \
294 $(srcdir)/binutils.texi | \
296 sed
-e
's/---/\\(em/g' \
300 ######################################################################
303 -rm -f
*.o
*~ \
#* core $(STAGESTUFF) TAGS binutils.?? binutils.???
308 etags
$(INCDIR
)/*.h
$(BFDSRC
)/*.
[hc
] *.
[hc
]
311 -rm -f
$(STAGESTUFF
) TAGS
314 -parent
=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
315 if
[ -d
$$parent ] ; then true
; else mkdir
$$parent ; fi
316 -if
[ -d
$(bindir) ] ; then true
; else mkdir
$(bindir) ; fi
317 for i in
$(PROGS
) ; do \
318 $(INSTALL_PROGRAM
) $$i $(bindir)/$(program_prefix
)$${i}$(program_suffix
) ; \
320 -parent
=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
321 if
[ -d
$$parent ] ; then true
; else mkdir
$$parent ; fi
322 -if
[ -d
$(man1dir) ] ; then true
; else mkdir
$(man1dir) ; fi
323 for i in
$(MANPAGES
) ; do \
324 $(INSTALL_DATA
) $(srcdir)/$$i $(man1dir)/$(program_prefix
)$${i}$(program_suffix
) ; \
328 -parent
=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
329 if
[ -d
$$parent ] ; then true
; else mkdir
$$parent ; fi
330 -if
[ -d
$(infodir) ] ; then true
; else mkdir
$(infodir) ; fi
331 for i in
*.
info* ; do \
332 $(INSTALL_DATA
) $$i $(infodir)/$$i ; \
338 dist: $(DIST_NAME
).
tar.Z
341 cd ..
/..
; rm -f
$(DIST_NAME
); ln
-s devo
$(DIST_NAME
)
342 make arparse.c arlex.c binutils.mm
-f Makefile.in
343 cd ..
/ld; make ldgram.c ldgram.h ldlex.c
ld.mm
-f Makefile.in
344 cd ..
/..
; tar chf
- $(DIST_NAME
) | compress
>$(DIST_NAME
).
tar.Z
345 rm -rf ..
/..
/$(DIST_NAME
)
347 # These get around a bug in Sun Make in SunOS 4.1.1
349 am29k-pinsn.o
: am29k-pinsn.c
354 cplus-dem.o
:cplus-dem.c
355 filemode.o
:filemode.c
359 i960-pinsn.o
: i960-pinsn.c
360 is-ranlib.o
:is-ranlib.c
361 is-strip.o
:is-strip.c
362 m68k-pinsn.o
: m68k-pinsn.c
363 maybe-ranlib.o
:maybe-ranlib.c
364 maybe-strip.o
:maybe-strip.c
366 not-ranlib.o
:not-ranlib.c
367 not-strip.o
:not-strip.c
370 sparc-pinsn.o
: sparc-pinsn.c
371 i386-pinsn.o
: i386-pinsn.c
373 version.o
: $(srcdir)/version.c
374 $(CC
) $(CFLAGS
) -I.
-I
$(srcdir) -I
$(INCDIR
) $(HDEFINES
) $(TDEFINES
) -DVERSION
='"$(VERSION)"' -c
$(srcdir)/version.c
376 #-----------------------------------------------------------------------------
377 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
379 # 'VERSION' file must be present and contain a string of the form "x.y"
380 #-----------------------------------------------------------------------------
384 echo
"char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
387 # Dummy target to force execution of dependent targets.
391 # Target to uncomment host-specific lines in this makefile. Such lines must
392 # have the following string beginning in column 1: #__<hostname>__#
393 # Original Makefile is backed up as 'Makefile.old'.
395 # Invoke with: make make HOST=xxx
398 -@if
test $(HOST
)x
= x
; then \
399 echo
'\aSpecify "make make HOST=???"'; \
402 grep
-s
"^#The next line was generated by 'make make'" Makefile
; \
403 if
test $$?
= 0 ; then \
404 echo
"\aMakefile has already been processed with 'make make'";\
407 mv
-f Makefile Makefile.old
; \
408 echo
"#The next line was generated by 'make make'" >Makefile
; \
409 echo
"HOST=$(HOST)" >>Makefile
; \
411 sed
"s/^#__$(HOST)__#//" < Makefile.old
>>Makefile
413 Makefile
: $(srcdir)/Makefile.in
$(host_makefile_frag
) $(target_makefile_frag
)
414 $(SHELL
) .
/config.status
416 ### Local Variables: ***
417 ### mode:fundamental ***
418 ### page-delimiter: "^#\f" ***