added i386-*-bsd, from p3
[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 srcdir = .
22
23 prefix = /usr/local
24
25 exec_prefix = $(prefix)
26 bindir = $(exec_prefix)/bin
27 libdir = $(exec_prefix)/lib
28
29 datadir = $(prefix)/lib
30 mandir = $(prefix)/man
31 man1dir = $(mandir)/man1
32 man2dir = $(mandir)/man2
33 man3dir = $(mandir)/man3
34 man4dir = $(mandir)/man4
35 man5dir = $(mandir)/man5
36 man6dir = $(mandir)/man6
37 man7dir = $(mandir)/man7
38 man8dir = $(mandir)/man8
39 man9dir = $(mandir)/man9
40 infodir = $(prefix)/info
41 includedir = $(prefix)/include
42 oldincludedir =
43 docdir = 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 = qc
53 CFLAGS = -g
54 BISON = bison
55 MAKEINFO = makeinfo
56 RANLIB = ranlib
57
58 INCDIR = $(srcdir)/../include
59 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
60 DEP = mkdep
61
62 SUBDIRS = doc
63
64
65 # Change this (to MINIMIZE=1) to save space in executables.
66 # Currently, all this does is control the target_vector in targets.c.
67 MINIMIZE=0
68
69 TARGETLIB = libbfd.a
70
71
72 BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
73 archures.o core.o section.o format.o syms.o reloc.o init.o ctor.o seclet.o
74
75 BFD_MACHINES = cpu-h8300.o cpu-i960.o cpu-sparc.o cpu-m68k.o cpu-m88k.o \
76 cpu-vax.o cpu-mips.o cpu-a29k.o cpu-i386.o cpu-rs6000.o cpu-hppa.o \
77 cpu-z8k.o cpu-we32k.o
78
79 BFD_BACKENDS = oasys.o ieee.o srec.o elf.o stab-syms.o\
80 aout64.o aout32.o demo64.o sunos.o newsos3.o i386aout.o bout.o \
81 aout-adobe.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 i386linux.o \
84 coff-z8k.o coff-we32k.o i386bsd.o
85
86 OPTIONAL_BACKENDS = trad-core.o
87
88 #### host and target dependent Makefile fragments come in here.
89 ###
90
91 FLAGS_TO_PASS = \
92 "against=$(against)" \
93 "AR=$(AR)" \
94 "AR_FLAGS=$(AR_FLAGS)" \
95 "CC=$(CC)" \
96 "CFLAGS=$(CFLAGS)" \
97 "RANLIB=$(RANLIB)" \
98 "MAKEINFO=$(MAKEINFO)" \
99 "INSTALL=$(INSTALL)" \
100 "INSTALL_DATA=$(INSTALL_DATA)" \
101 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
102 "BISON=$(BISON)"
103
104 .c.o:
105 $(CC) -c $(CFLAGS) $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) $<
106
107 BFD_H=$(INCDIR)/bfd.h
108
109 # C source files that correspond to .o's.
110 CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \
111 coff-i386.c aout64.c aout32.c sunos.c demo64.c coff-i960.c srec.c tekhex.c \
112 oasys.c ieee.c coff-m68k.c coff-a29k.c coff-rs6000.c coff-msym.c \
113 format.c section.c core.c syms.c stab-syms.c reloc.c init.c ctor.c \
114 seclet.c coff-m88k.c coff-mips.c trad-core.c newsos3.c i386aout.c \
115 i386linux.c bout.c elf.c aout-adobe.c coff-we32k.c i386bsd.c \
116 cpu-h8300.c cpu-i960.c cpu-sparc.c cpu-m68k.c cpu-m88k.c cpu-vax.c \
117 cpu-mips.c cpu-a29k.c cpu-i386.c cpu-rs6000.c coff-h8300.c hppa.c \
118 cpu-hppa.c cpu-we32k.c
119
120 STAGESTUFF = $(TARGETLIB) $(OFILES)
121
122 all: Makefile $(TARGETLIB)
123 @$(MAKE) subdir_do DO=all "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
124
125 .NOEXPORT:
126
127 check:
128
129 info: force
130 @$(MAKE) subdir_do DO=info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
131
132 clean-info:
133 @$(MAKE) subdir_do DO=clean-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
134
135 install-info: force
136 @$(MAKE) subdir_do DO=install-info "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
137
138 # HDEPFILES comes from the host config; TDEPFILES from the target config.
139 OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(BFD_MACHINES) $(HDEPFILES) $(TDEPFILES)
140
141 $(TARGETLIB): $(OFILES)
142 rm -f $(TARGETLIB)
143 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
144 $(RANLIB) $(TARGETLIB)
145
146 # When compiling archures.c and targets.c, supply the default target
147 # info from configure.
148
149
150 targets.o: targets.c
151 $(CC) $(CFLAGS) -c $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
152
153 archures.o: archures.c
154 $(CC) $(CFLAGS) -c $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) -DMINIMIZE=$(MINIMIZE) $(TDEFAULTS) $<
155
156 subdir_do: force
157 @for i in $(DODIRS); do \
158 if [ -d ./$$i ] ; then \
159 if (cd ./$$i; \
160 $(MAKE) $(FLAGS_TO_PASS) $(DO)) ; then true ; \
161 else exit 1 ; fi ; \
162 else true ; fi ; \
163 done
164
165 tags etags: TAGS
166
167 TAGS: force
168 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
169
170 do_mostlyclean:
171 rm -f *.o *~ core *.E *.p *.ip aout-params.h gen-aout
172 do_clean: do_mostlyclean
173 rm -f libbfd.a TAGS
174 do_distclean: do_clean
175 rm -f Makefile config.status
176 do_realclean: do_distclean
177
178 mostlyclean: do_mostlyclean
179 $(MAKE) subdir_do DO=mostlyclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
180 clean: do_clean
181 $(MAKE) subdir_do DO=clean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
182 distclean: do_distclean
183 $(MAKE) subdir_do DO=distclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
184 clobber realclean: do_readlclean
185 $(MAKE) subdir_do DO=realclean "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
186
187 # Mark everything as depending on config.status, since the timestamp on
188 # sysdep.h might actually move backwards if we reconfig and relink it
189 # to a different hosts/h-xxx.h file. This will force a recompile anyway.
190 RECONFIG = config.status
191 $(BFD_LIBS): libbfd.h $(BFD_H) $(RECONFIG)
192 $(BFD_MACHINES): libbfd.h $(BFD_H) $(RECONFIG)
193 $(BFD_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
194 $(OPTIONAL_BACKENDS): libbfd.h $(BFD_H) $(RECONFIG)
195
196 # Get around a Sun Make bug in SunOS 4.1.1 with VPATH
197 cpu-i386.o:cpu-i386.c
198 cpu-z8k.o: cpu-z8k.c
199 coff-z8k.o: coff-z8k.c
200 cpu-we32k.o: cpu-we32k.c
201 coff-we32k.o: coff-we32k.c
202
203 saber:
204 #suppress 65 on bfd_map_over_sections
205 #suppress 66 on bfd_map_over_sections
206 #suppress 67 on bfd_map_over_sections
207 #suppress 68 on bfd_map_over_sections
208 #suppress 69 on bfd_map_over_sections
209 #suppress 70 on bfd_map_over_sections
210 #suppress 110 in bfd_map_over_sections
211 #suppress 112 in bfd_map_over_sections
212 #suppress 530
213 #suppress 590 in swap_exec_header
214 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
215 #suppress 590 in bfd_dont_truncate_arname
216 #suppress 590 on ignore
217 #suppress 590 on abfd
218 #setopt load_flags $(CFLAGS)
219 #load $(CFILES)
220
221
222 #-----------------------------------------------------------------------------
223 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
224 #
225 # 'VERSION' file must be present and contain a string of the form "x.y"
226 #-----------------------------------------------------------------------------
227
228 ver960.c: FORCE
229 rm -f ver960.c
230 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
231
232
233 # This target should be invoked before building a new release.
234 # 'VERSION' file must be present and contain a string of the form "x.y"
235 #
236 roll:
237 @V=`cat VERSION` ; \
238 MAJ=`sed 's/\..*//' VERSION` ; \
239 MIN=`sed 's/.*\.//' VERSION` ; \
240 V=$$MAJ.`expr $$MIN + 1` ; \
241 rm -f VERSION ; \
242 echo $$V >VERSION ; \
243 echo Version $$V
244
245 # Dummy target to force execution of dependent targets.
246 #
247 force:
248
249 install:
250 -parent=`echo $(libdir)|sed -e 's@/[^/]*$$@@'`; \
251 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
252 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
253 $(INSTALL_DATA) libbfd.a $(libdir)/libbfd.a
254 $(RANLIB) $(libdir)/libbfd.a
255 -parent=`echo $(includedir)|sed -e 's@/[^/]*$$@@'`; \
256 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
257 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
258 $(INSTALL_DATA) $(INCDIR)/bfd.h $(includedir)/bfd.h
259 -if [ -z "$(oldincludedir)" ] ; then true ; else if [ -d $(oldincludedir) ] ; then true ; else mkdir $(oldincludedir) ; fi ; $(INSTALL_DATA) $(INCDIR)/bfd.h $(oldincludedir)/bfd.h ; fi
260 @$(MAKE) subdir_do DO=install "DODIRS=$(SUBDIRS)" $(FLAGS_TO_PASS)
261
262 # Target to uncomment host-specific lines in this makefile. Such lines must
263 # have the following string beginning in column 1: #__<hostname>__#
264 # Original Makefile is backed up as 'Makefile.old'.
265 #
266 # Invoke with: make make HOST=xxx
267 #
268 make:
269 -@if test $(HOST)x = x ; then \
270 echo '\aSpecify "make make HOST=???"'; \
271 exit 1; \
272 fi ; \
273 grep -s "^#The next line was generated by 'make make'" Makefile; \
274 if test $$? = 0 ; then \
275 echo "\aMakefile has already been processed with 'make make'";\
276 exit 1; \
277 fi ; \
278 mv -f Makefile Makefile.old; \
279 echo "#The next line was generated by 'make make'" >Makefile ; \
280 echo "HOST=$(HOST)" >>Makefile ; \
281 echo >>Makefile ; \
282 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
283
284 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
285 $(SHELL) ./config.status
286
287 dep: $(CFILES)
288 mkdep $(CFLAGS) $?
289
290 host-aout.o: Makefile
291
292 # The following program can be used to generate a simple config file
293 # which can be folded into an h-XXX file for a new host, with some editing.
294 aout-params.h: gen-aout
295 ./gen-aout > aout-params.h
296 gen-aout: $(srcdir)/gen-aout.c Makefile
297 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
298
299 headers:
300 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
301 # Could really use a "copy-if-change"...
302 cp $(docdir)/bfd.h bfd.h-new
303 $(srcdir)/../move-if-change bfd.h-new $(BFD_H)
304 cp $(docdir)/libbfd.h libbfd.h-new
305 $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
306 cp $(docdir)/libcoff.h libcoff.h-new
307 $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
308
309 bfd.info:
310 (cd $(docdir); $(MAKE) bfd.info $(FLAGS_TO_PASS))
311
312 bfd.dvi:
313 (cd $(docdir); $(MAKE) bfd.dvi $(FLAGS_TO_PASS))
314
315 bfd.ps:
316 (cd $(docdir); $(MAKE) bfd.ps $(FLAGS_TO_PASS))
317
318 # What appears below is generated by a hacked mkdep using gcc -MM.
319
320 # DO NOT DELETE THIS LINE -- mkdep uses it.
321 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
322
323 libbfd.o : libbfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
324 opncls.o : opncls.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
325 bfd.o : bfd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
326 archive.o : archive.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
327 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h
328 targets.o : targets.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
329 cache.o : cache.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
330 archures.o : archures.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h
331 aout64.o : aout64.c
332 aout32.o : aout32.c aoutx.h $(INCDIR)/bfd.h $(INCDIR)/ansidecl.h \
333 $(INCDIR)/obstack.h libaout.h libbfd.h $(INCDIR)/aout/aout64.h \
334 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
335 sunos.o : sunos.c aoutf1.h $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
336 libaout.h libbfd.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
337 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
338 demo64.o : demo64.c
339
340 srec.o : srec.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h
341 oasys.o : oasys.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
342 $(INCDIR)/oasys.h liboasys.h
343 ieee.o : ieee.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
344 $(INCDIR)/ieee.h libieee.h
345 coff-h8300.o: coff-h8300.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
346 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
347 coff-a29k.o: coff-a29k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
348 $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
349 coff-i386.o: coff-i386.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
350 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
351 coff-i960.o: coff-i960.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
352 $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
353 coff-m68k.o: coff-m68k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
354 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
355 coff-m88k.o: coff-m88k.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
356 $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
357 coff-mips.o: coff-mips.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
358 $(INCDIR)/coff/mips.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
359 coff-rs6000.o: coff-rs6000.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
360 $(INCDIR)/coff/rs6000.h $(INCDIR)/coff/internal.h libcoff.h coffcode.h
361 format.o : format.c $(INCDIR)/bfd.h \
362 $(INCDIR)/obstack.h libbfd.h
363 section.o : section.c $(INCDIR)/bfd.h \
364 $(INCDIR)/obstack.h libbfd.h
365 core.o : core.c $(INCDIR)/bfd.h \
366 $(INCDIR)/obstack.h libbfd.h
367 syms.o : syms.c $(INCDIR)/bfd.h \
368 $(INCDIR)/obstack.h libbfd.h
369 syms.o : stab-syms.c
370 reloc.o : reloc.c $(INCDIR)/bfd.h \
371 $(INCDIR)/obstack.h libbfd.h
372
373 trad-core.o : trad-core.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h \
374 libbfd.h libaout.h
375
376 coff-msym.o: coff-msym.c $(INCDIR)/bfd.h $(INCDIR)/coff/ecoff-ext.h \
377 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h
378
379 newsos3.o : newsos3.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
380 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
381 $(INCDIR)/aout/ar.h libaout.h
382 i386aout.o : i386aout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
383 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
384 $(INCDIR)/aout/ar.h libaout.h
385 i386linux.o : i386linux.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
386 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
387 $(INCDIR)/aout/ar.h libaout.h
388 i386bsd.o : i386bsd.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
389 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
390 $(INCDIR)/aout/ar.h libaout.h
391 bout.o : bout.c $(INCDIR)/bfd.h $(INCDIR)/obstack.h libbfd.h \
392 $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
393
394 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
395