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