* Makefile.in, archures.c, configure.in, cpu-hppa.c, hppa.c, libhppa.h,
[binutils-gdb.git] / bfd / Makefile.in
1 # Makefile template for Configure for the BFD library.
2 # Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
3 # Written by Cygnus Support.
4 #
5 # This file is part of BFD, the Binary File Descriptor library.
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20
21 # $Id$
22
23 srcdir = .
24
25 prefix = /usr/local
26
27 exec_prefix = $(prefix)
28 bindir = $(exec_prefix)/bin
29 libdir = $(exec_prefix)/lib
30
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 oldincludedir =
45 docdir = doc
46
47 SHELL = /bin/sh
48
49 INSTALL = install -c
50 INSTALL_PROGRAM = $(INSTALL)
51 INSTALL_DATA = $(INSTALL)
52
53 AR = ar
54 AR_FLAGS = qc
55 CFLAGS = -g
56 BISON = bison
57 MAKEINFO = makeinfo
58 RANLIB = ranlib
59
60 INCDIR = $(srcdir)/../include
61 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
62 DEP = mkdep
63
64 SUBDIRS = doc
65
66
67 # Change this (to MINIMIZE=1) to save space in executables.
68 # Currently, all this does is control the target_vector in targets.c.
69 MINIMIZE=0
70
71 TARGETLIB = libbfd.a
72
73
74 BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
75 archures.o core.o section.o format.o syms.o reloc.o init.o ctor.o seclet.o
76
77 BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
78 cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o cpu-hppa.o
79
80 BFD_BACKENDS = oasys.o ieee.o srec.o elf.o stab-syms.o\
81 aout64.o aout32.o demo64.o sunos.o newsos3.o i386aout.o bout.o \
82 coff-i960.o coff-a29k.o coff-m68k.o coff-i386.o coff-m88k.o \
83 coff-mips.o coff-rs6000.o coff-h8300.o coff-msym.o hppa.o
84
85 OPTIONAL_BACKENDS = trad-core.o
86
87 #### host and target dependent Makefile fragments come in here.
88 ###
89
90 .c.o:
91 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
92
93 BFD_H=$(INCDIR)/bfd.h
94
95 # C source files that correspond to .o's.
96 CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \
97 coff-i386.c aout64.c aout32.c sunos.c demo64.c coff-i960.c srec.c tekhex.c \
98 oasys.c ieee.c coff-m68k.c coff-a29k.c coff-rs6000.c coff-msym.c \
99 format.c section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c seclet.c \
100 coff-m88k.c coff-mips.c trad-core.c newsos3.c i386aout.c bout.c elf.c \
101 cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c cpu-m88k.c cpu-vax.c \
102 cpu-mips.c cpu-a29k.c cpu-i386.c cpu-rs6000.c coff-h8300.c hppa.c \
103 cpu-hppa.c
104
105 STAGESTUFF = $(TARGETLIB) $(OFILES)
106
107 all: $(TARGETLIB)
108 @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)"
109
110 .NOEXPORT:
111
112 check:
113
114 info: force
115 @$(MAKE) subdir_do DO=info "DODIRS=$(SUBDIRS)" "MAKEINFO=$(MAKEINFO)"
116
117 clean-info:
118 @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)"
119
120 install-info: force
121 @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)"
122
123 # HDEPFILES comes from the host config; TDEPFILES from the target config.
124 OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
125
126 $(TARGETLIB): $(OFILES)
127 rm -f $(TARGETLIB)
128 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
129 $(RANLIB) $(TARGETLIB)
130
131 # When compiling targets.c, supply the default target info from configure.
132 targets.o: targets.c
133 $(CC) $(CFLAGS) -c $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
134
135 subdir_do: force
136 @for i in $(DODIRS); do \
137 if [ -d ./$$i ] ; then \
138 if (cd ./$$i; \
139 $(MAKE) \
140 "against=$(against)" \
141 "AR=$(AR)" \
142 "AR_FLAGS=$(AR_FLAGS)" \
143 "CC=$(CC)" \
144 "CFLAGS=$(CFLAGS)" \
145 "RANLIB=$(RANLIB)" \
146 "MAKEINFO=$(MAKEINFO)" \
147 "BISON=$(BISON)" $(DO)) ; then true ; \
148 else exit 1 ; fi ; \
149 else true ; fi ; \
150 done
151
152 tags etags: TAGS
153
154 TAGS: force
155 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
156
157 clean:
158 rm -f *.[oa] *~ core *.E *.p *.ip aout-params.h gen-aout
159 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)"
160
161 clobber realclean: clean
162 rm -f libbfd.a TAGS
163 $(MAKE) subdir_do DO=clobber "DODIRS=$(SUBDIRS)"
164
165 # Mark everything as depending on config.status, since the timestamp on
166 # sysdep.h might actually move backwards if we reconfig and relink it
167 # to a different hosts/h-xxx.h file. This will force a recompile anyway.
168 RECONFIG = config.status
169 $(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG)
170 $(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG)
171 $(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
172 $(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
173
174 # Get around a Sun Make bug in SunOS 4.1.1 with VPATH
175 cpu-i386.o:cpu-i386.c
176
177 saber:
178 #suppress 65 on bfd_map_over_sections
179 #suppress 66 on bfd_map_over_sections
180 #suppress 67 on bfd_map_over_sections
181 #suppress 68 on bfd_map_over_sections
182 #suppress 69 on bfd_map_over_sections
183 #suppress 70 on bfd_map_over_sections
184 #suppress 110 in bfd_map_over_sections
185 #suppress 112 in bfd_map_over_sections
186 #suppress 530
187 #suppress 590 in swap_exec_header
188 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
189 #suppress 590 in bfd_dont_truncate_arname
190 #suppress 590 on ignore
191 #suppress 590 on abfd
192 #setopt load_flags $(CFLAGS)
193 #load $(CFILES)
194
195
196 #-----------------------------------------------------------------------------
197 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
198 #
199 # 'VERSION' file must be present and contain a string of the form "x.y"
200 #-----------------------------------------------------------------------------
201
202 ver960.c: FORCE
203 rm -f ver960.c
204 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
205
206
207 # This target should be invoked before building a new release.
208 # 'VERSION' file must be present and contain a string of the form "x.y"
209 #
210 roll:
211 @V=`cat VERSION` ; \
212 MAJ=`sed 's/\..*//' VERSION` ; \
213 MIN=`sed 's/.*\.//' VERSION` ; \
214 V=$$MAJ.`expr $$MIN + 1` ; \
215 rm -f VERSION ; \
216 echo $$V >VERSION ; \
217 echo Version $$V
218
219 # Dummy target to force execution of dependent targets.
220 #
221 force:
222
223 install:
224 $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
225 $(RANLIB) $(libdir)/libbfd.a
226 $(INSTALL_DATA) $(INCDIR)/bfd.h $(includedir)/bfd.h
227 [ -z "$(oldincludedir)" ] || $(INSTALL_DATA) $(INCDIR)/bfd.h $(oldincludedir)/bfd.h
228 @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)"
229
230 # Target to uncomment host-specific lines in this makefile. Such lines must
231 # have the following string beginning in column 1: #__<hostname>__#
232 # Original Makefile is backed up as 'Makefile.old'.
233 #
234 # Invoke with: make make HOST=xxx
235 #
236 make:
237 -@if test $(HOST)x = x ; then \
238 echo '\aSpecify "make make HOST=???"'; \
239 exit 1; \
240 fi ; \
241 grep -s "^#The next line was generated by 'make make'" Makefile; \
242 if test $$? = 0 ; then \
243 echo "\aMakefile has already been processed with 'make make'";\
244 exit 1; \
245 fi ; \
246 mv -f Makefile Makefile.old; \
247 echo "#The next line was generated by 'make make'" >Makefile ; \
248 echo "HOST=$(HOST)" >>Makefile ; \
249 echo >>Makefile ; \
250 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
251
252 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
253 $(SHELL) ./config.status
254
255 dep: $(CFILES)
256 mkdep $(CFLAGS) $?
257
258 host-aout.o: Makefile
259
260 # The following program can be used to generate a simple config file
261 # which can be folded into an h-XXX file for a new host, with some editing.
262 aout-params.h: gen-aout
263 ./gen-aout > aout-params.h
264 gen-aout: $(srcdir)/gen-aout.c Makefile
265 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
266
267 headers:
268 (cd $(docdir); $(MAKE) protos)
269 # Rebuild prototypes in bfd.h
270 cp $(docdir)/bfd.h $(BFD_H)
271 cp $(docdir)/libbfd.h $(srcdir)/libbfd.h
272 cp $(docdir)/libcoff.h $(srcdir)/libcoff.h
273
274 bfd.info:
275 ( cd $(docdir); $(MAKE) bfd.info)
276
277 bfd.dvi:
278 (cd $(docdir); $(MAKE) bfd.dvi)
279
280 bfd.ps:
281 (cd $(docdir); $(MAKE) bfd.ps)
282
283 # What appears below is generated by a hacked mkdep using gcc -MM.
284
285 # DO NOT DELETE THIS LINE -- mkdep uses it.
286 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
287
288 libbfd.o : libbfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
289 opncls.o : opncls.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
290 bfd.o : bfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
291 archive.o : archive.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
292 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h
293 targets.o : targets.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
294 cache.o : cache.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
295 archures.o : archures.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h
296 aout64.o : aout64.c
297 aout32.o : aout32.c aoutx.h $(INCDIR)/bfd.h $(INCDIR)/ansidecl.h \
298 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
299 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
300 sunos.o : sunos.c aoutf1.h $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
301 libaout.h libbfd.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
302 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
303 demo64.o : demo64.c
304
305 srec.o : srec.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
306
307 oasys.o : oasys.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
308 $(INCDIR)/oasys.h liboasys.h
309 ieee.o : ieee.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
310 $(INCDIR)/ieee.h libieee.h
311 coff-h8300.o: coff-h8300.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
312 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
313 coff-a29k.o: coff-a29k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
314 $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
315 coff-i386.o: coff-i386.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
316 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
317 coff-i960.o: coff-i960.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
318 $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
319 coff-m68k.o: coff-m68k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
320 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
321 coff-m88k.o: coff-m88k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
322 $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
323 coff-mips.o: coff-mips.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
324 $(INCDIR)/coff/mips.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
325 coff-rs6000.o: coff-rs6000.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
326 $(INCDIR)/coff/rs6000.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
327 format.o : format.c $(INCDIR)/bfd.h \
328 $(INCDIR)/obstack.h libbfd.h
329 section.o : section.c $(INCDIR)/bfd.h \
330 $(INCDIR)/obstack.h libbfd.h
331 core.o : core.c $(INCDIR)/bfd.h \
332 $(INCDIR)/obstack.h libbfd.h
333 syms.o : syms.c $(INCDIR)/bfd.h \
334 $(INCDIR)/obstack.h libbfd.h
335 syms.o : stab-syms.c
336 reloc.o : reloc.c $(INCDIR)/bfd.h \
337 $(INCDIR)/obstack.h libbfd.h
338
339 trad-core.o : trad-core.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
340 libbfd.h libaout.h
341
342 coff-msym.o: coff-msym.c $(INCDIR)/bfd.h $(INCDIR)/coff/ecoff-ext.h \
343 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h
344
345 newsos3.o : newsos3.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
346 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
347 $(INCDIR)/aout/ar.h libaout.h
348 i386aout.o : i386aout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
349 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
350 $(INCDIR)/aout/ar.h libaout.h
351 bout.o : bout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
352 $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
353
354 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
355