* configure.in: added testsuite to configdirs.
[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 = $(libdir)/$(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.0
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 # copy and strip should be the same program
85 COPY_PROG=copy
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=demangle
95
96 PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_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 # When adding .o files, to make VPATH work in Sun Make, you have to
114 # also add a foo.o: foo.c line at the bottom of the file.
115 DISASMS = m68k-pinsn.o i960-pinsn.o i386-pinsn.o sparc-pinsn.o am29k-pinsn.o
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 #\f
145 ## The rules
146
147 all: $(ADDL_LIBS) $(PROGS) testsuite
148
149 testsuite:
150 echo "testsuite"; \
151 if [ -d testsuite ]; then \
152 (rootme=`pwd`/ ; export rootme ; \
153 rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
154 cd testsuite; $(MAKE) $(FLAGS_TO_PASS)); \
155 fi; \
156
157
158 check: all
159 /bin/sh $(srcdir)/sanity.sh .
160
161 test-install:
162 /bin/sh $(srcdir)/sanity.sh $(bindir)
163
164 info: binutils.info
165
166 dvi: binutils.dvi
167
168 #$(BFD):$(LIBDIR)/../common/*.c
169 # (cd $(LIBDIR); make)
170
171 $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
172 $(CC) $(LDFLAGS) $(CFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(LOADLIBES)
173
174 $(COPY_PROG): $(ADDL_LIBS) copy.o not-strip.o $(BFD)
175 $(CC) $(LDFLAGS) $(CFLAGS) -o $(COPY_PROG) copy.o not-strip.o $(ADDL_LIBS) $(LOADLIBES)
176
177 $(STRIP_PROG): $(ADDL_LIBS) copy.o is-strip.o $(BFD)
178 $(CC) $(LDFLAGS) $(CFLAGS) -o $(STRIP_PROG) copy.o is-strip.o $(ADDL_LIBS) $(LOADLIBES)
179
180 $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
181 $(CC) $(LDFLAGS) $(CFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(LOADLIBES)
182
183 $(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(DISASMS) $(BFD) $(OPCODES)
184 $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(DISASMS) $(ADDL_LIBS) $(OPCODES) $(LOADLIBES)
185
186 $(DEMANGLER_PROG): $(LIBIBERTY_SRC_DIR)/cplus-dem.c
187 $(CC) $(LDFLAGS) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DMAIN -o $(DEMANGLER_PROG) $(LIBIBERTY_SRC_DIR)/cplus-dem.c $(LIBIBERTY) $(LOADLIBES)
188
189 arparse.c:arparse.y
190 $(BISON) $(BISONFLAGS) $(srcdir)/arparse.y
191 -mv y.tab.c arparse.c
192 -mv y.tab.h arparse.h
193
194
195 arlex.c: arlex.l
196 $(LEX) $(LEX_OPTIONS) $(srcdir)/arlex.l
197 mv lex.yy.c arlex.c
198
199 $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
200 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
201
202 $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
203 $(CC) $(LDFLAGS) $(CFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
204
205 # This rule creates a single binary that switches between ar and ranlib
206 # by looking at argv[0]. Use this kludge to save some disk space.
207 # However, you have to install things by hand.
208 # (That is after 'make install', replace the installed ranlib by a link to ar.)
209
210 # Alternatively, you can install ranlib.sh as ranlib.
211
212 ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
213 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
214 -rm -f $(RANLIB_PROG)
215 -ln $(AR_PROG) $(RANLIB_PROG)
216
217 # copy and strip in one binary that uses argv[0] to decide its action.
218
219 copy_with_strip: $(ADDL_LIBS) copy.o maybe-strip.o $(BFD)
220 $(CC) $(LDFLAGS) $(CFLAGS) -o $(COPY_PROG) copy.o maybe-strip.o $(ADDL_LIBS) $(LOADLIBES)
221 -rm -f $(STRIP_PROG)
222 -ln $(COPY_PROG) $(STRIP_PROG)
223
224 stage1: force
225 - mkdir stage1
226 - mv -f $(STAGESTUFF) stage1
227
228 stage2: force
229 - mkdir stage2
230 - mv -f $(STAGESTUFF) stage2
231
232 stage3: force
233 - mkdir stage3
234 - mv -f $(STAGESTUFF) stage3
235
236 against=stage2
237
238 comparison: force
239 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
240
241 de-stage1: force
242 - (cd stage1 ; mv -f * ..)
243 - rmdir stage1
244
245 de-stage2: force
246 - (cd stage2 ; mv -f * ..)
247 - rmdir stage2
248
249 de-stage3: force
250 - (cd stage3 ; mv -f * ..)
251 - rmdir stage3
252
253 ######################################################################
254 # DOCUMENTATION TARGETS
255 # TeX output
256 binutils.dvi: $(srcdir)/binutils.texi
257 $(TEXI2DVI) $(srcdir)/binutils.texi
258
259 # info file for online browsing
260 binutils.info: $(srcdir)/binutils.texi
261 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
262
263 # different targets for -ms, -mm, -me
264 # Try to use a recent texi2roff. v2 was put on prep in jan91.
265 # If you want an index, see texi2roff doc for postprocessing
266 # and add -i to texi2roff invocations below.
267 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
268 # correspondint -e lines when later texi2roff's are current)
269 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
270 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
271 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
272 # + @alphaenumerate is ridiculously new, turned into @enumerate
273
274 # roff output (-ms)
275 binutils.ms: $(srcdir)/binutils.texi
276 sed -e '/\\input texinfo/d' \
277 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
278 -e '/^@ifinfo/,/^@end ifinfo/d' \
279 -e '/^@c/d' \
280 -e 's/{.*,,/{/' \
281 -e 's/@ / /g' \
282 -e 's/^@alphaenumerate/@enumerate/g' \
283 -e 's/^@end alphaenumerate/@end enumerate/g' \
284 $(srcdir)/binutils.texi | \
285 $(TEXI2ROFF) -ms | \
286 sed -e 's/---/\\(em/g' \
287 >binutils.ms
288
289 # roff output (-mm)
290 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
291 # try leaving them in
292 binutils.mm: $(srcdir)/binutils.texi
293 sed -e '/\\input texinfo/d' \
294 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
295 -e '/^@ifinfo/,/^@end ifinfo/d' \
296 -e '/^@c/d' \
297 -e 's/{.*,,/{/' \
298 -e '/@noindent/d' \
299 -e 's/@ / /g' \
300 -e 's/^@alphaenumerate/@enumerate/g' \
301 -e 's/^@end alphaenumerate/@end enumerate/g' \
302 $(srcdir)/binutils.texi | \
303 $(TEXI2ROFF) -mm | \
304 sed -e 's/---/\\(em/g' \
305 >binutils.mm
306
307 # roff output (-me)
308 binutils.me: $(srcdir)/binutils.texi
309 sed -e '/\\input texinfo/d' \
310 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
311 -e '/^@ifinfo/,/^@end ifinfo/d' \
312 -e '/^@c/d' \
313 -e 's/{.*,,/{/' \
314 -e 's/@ / /g' \
315 -e 's/^@alphaenumerate/@enumerate/g' \
316 -e 's/^@end alphaenumerate/@end enumerate/g' \
317 $(srcdir)/binutils.texi | \
318 $(TEXI2ROFF) -me | \
319 sed -e 's/---/\\(em/g' \
320 >binutils.me
321
322
323 ######################################################################
324
325 mostlyclean:
326 -rm -f *.o *~ \#* core binutils.?? binutils.???
327 clean: mostlyclean
328 -rm -f $(PROGS)
329 distclean: clean
330 -rm -f Makefile config.status sysdep.h
331 realclean: distclean
332 -rm -f $(DISTSTUFF) TAGS
333
334 etags tags: TAGS
335
336 TAGS: force
337 etags $(INCDIR)/*.h $(BFDSRC)/*.[hc] *.[hc]
338
339 install: all
340 -parent=`echo $(bindir)|sed -e 's@/[^/]*$$@@'`; \
341 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
342 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
343 -for i in $(PROGS) ; do \
344 $(INSTALL_PROGRAM) $$i $(bindir)/`t='$(program_transform_name)'; echo $$i | sed -e "" $$t` ; \
345 done
346 -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
347 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
348 -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; fi
349 -for i in $(MANPAGES) ; do \
350 $(INSTALL_DATA) $(srcdir)/$$i.1 $(man1dir)/`t='$(program_transform_name)'; echo $$i | sed -e "" $$t`.1 ; \
351 done
352 -if [ -d $(tooldir) ]; then \
353 if [ -d $(tooldir)/bin ] ; then true ; else mkdir $(tooldir)/bin ; fi; \
354 for i in nm strip ; do \
355 rm -f $(tooldir)/bin/$$i; \
356 ln $(bindir)/`t='$(program_transform_name)'; echo $$i | sed -e "" $$t` $(tooldir)/bin/$$i \
357 || $(INSTALL_PROGRAM) $$i $(tooldir)/bin/$$i; \
358 done; \
359 else true; fi
360
361 install-info: info
362 -parent=`echo $(infodir)|sed -e 's@/[^/]*$$@@'`; \
363 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
364 -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
365 for i in *.info* ; do \
366 $(INSTALL_DATA) $$i $(infodir)/$$i ; \
367 done
368
369 clean-info:
370 -rm -rf *.info*
371
372 # Making a dist:
373 # cvs rtag binutils-x-yy binutils
374 # cvs co -r binutils-x-yy binutils
375 # Sanitize
376 # cd {HERE}; make dist [-f Makefile.in]
377
378 dist: $(DIST_NAME).tar.Z
379
380 diststuff: $(DISTSTUFF)
381
382 $(DIST_NAME).tar.Z:
383 cd ..; chmod og=u `find . -print`
384 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
385 make diststuff -f Makefile.in
386 cd ../ld; make diststuff -f Makefile.in
387 cd ../gprof; make diststuff -f Makefile.in
388 cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
389 rm -rf ../../$(DIST_NAME)
390
391 # These get around a bug in Sun Make in SunOS 4.1.1
392 alloca.o:alloca.c
393 am29k-pinsn.o: am29k-pinsn.c
394 ar.o: ar.c
395 arsup.o: arsup.c
396 bucomm.o: bucomm.c
397 copy.o: copy.c
398 filemode.o:filemode.c
399 getopt.o:getopt.c
400 getopt1.o:getopt1.c
401 gmalloc.o:gmalloc.c
402 i960-pinsn.o: i960-pinsn.c
403 is-ranlib.o:is-ranlib.c
404 is-strip.o:is-strip.c
405 m68k-pinsn.o: m68k-pinsn.c
406 maybe-ranlib.o:maybe-ranlib.c
407 maybe-strip.o:maybe-strip.c
408 nm.o: nm.c
409 not-ranlib.o:not-ranlib.c
410 not-strip.o:not-strip.c
411 objdump.o: objdump.c
412 size.o: size.c
413 sparc-pinsn.o: sparc-pinsn.c
414 i386-pinsn.o: i386-pinsn.c
415 strip.o:strip.c
416 version.o: $(srcdir)/version.c
417 $(CC) $(CFLAGS) $(INCLUDES) $(HDEFINES) $(TDEFINES) -DVERSION='"$(VERSION)"' -c $(srcdir)/version.c
418
419 #-----------------------------------------------------------------------------
420 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
421 #
422 # 'VERSION' file must be present and contain a string of the form "x.y"
423 #-----------------------------------------------------------------------------
424
425 ver960.c: FORCE
426 rm -f ver960.c
427 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
428
429
430 # Dummy target to force execution of dependent targets.
431 #
432 force:
433
434 # Target to uncomment host-specific lines in this makefile. Such lines must
435 # have the following string beginning in column 1: #__<hostname>__#
436 # Original Makefile is backed up as 'Makefile.old'.
437 #
438 # Invoke with: make make HOST=xxx
439 #
440 make:
441 -@if test $(HOST)x = x ; then \
442 echo '\aSpecify "make make HOST=???"'; \
443 exit 1; \
444 fi ; \
445 grep -s "^#The next line was generated by 'make make'" Makefile; \
446 if test $$? = 0 ; then \
447 echo "\aMakefile has already been processed with 'make make'";\
448 exit 1; \
449 fi ; \
450 mv -f Makefile Makefile.old; \
451 echo "#The next line was generated by 'make make'" >Makefile ; \
452 echo "HOST=$(HOST)" >>Makefile ; \
453 echo >>Makefile ; \
454 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
455
456 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
457 $(SHELL) ./config.status
458
459 ### Local Variables: ***
460 ### mode:fundamental ***
461 ### page-delimiter: "^#\f" ***
462 ### End: ***
463 ### end of file
This page took 0.039331 seconds and 5 git commands to generate.