Mon Sep 30 15:13:46 1991 Steve Chamberlain (steve at cygnus.com)
[deliverable/binutils-gdb.git] / bfd / Makefile.in
CommitLineData
3c8a3c56
JG
1# Makefile template for Configure for the BFD library.
2# Copyright (C) 1990-1991 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
99a42820 8# it under the terms of the GNU General Public License as published by
3c8a3c56
JG
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,
99a42820
RP
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.
3c8a3c56 16#
99a42820 17# You should have received a copy of the GNU General Public License
3c8a3c56
JG
18# along with this program; if not, write to the Free Software
19# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
99a42820
RP
20
21# $Id$
22
23srcdir = .
6f715d66
SC
24destdir = /usr/local
25libdir = $(destdir)/lib
12e7087f 26docdir = $(srcdir)/doc
99a42820
RP
27
28RANLIB = ranlib
1b494bfa
RP
29AR = ar
30AR_FLAGS = clq
d6a554ae 31INCDIR = $(srcdir)/../include
99a42820 32CSEARCH = -I$(INCDIR)
a5c6b4b3 33DEP = mkdep
12e7087f
JG
34
35
99a42820 36#### host and target dependent Makefile fragments come in here.
99a42820
RP
37###
38
5176a6bc
RP
39TARGETLIB = libbfd.a
40CFLAGS = -g $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION
99a42820
RP
41
42
726cc6ef 43BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
6f715d66 44 archures.o core.o section.o format.o syms.o reloc.o
99a42820 45
3c8a3c56
JG
46BFD_BACKENDS = oasys.o ieee.o srec.o \
47 aout64.o aout32.o demo64.o sunos.o newsos3.o bout.o \
c6e7b0ed
JG
48 icoff.o amdcoff.o m68kcoff.o i386coff.o m88k-bcs.o ecoff.o
49
50OPTIONAL_BACKENDS = trad-core.o
99a42820
RP
51
52BFD_H=$(INCDIR)/bfd.h
53SYSDEP_H=$(INCDIR)/sysdep.h
54
55# C source files that correspond to .o's.
56CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \
6f715d66 57 i386coff.c aout64.c aout32.c sunos.c demo64.c icoff.c srec.c \
3c8a3c56
JG
58 oasys.c ieee.c m68kcoff.c amdcoff.c \
59 format.c section.c core.c syms.c reloc.c \
87059abb 60 m88k-bcs.c ecoff.c trad-core.c newsos3.c bout.c
99a42820 61
5176a6bc
RP
62STAGESTUFF = $(TARGETLIB) $(OFILES)
63
64all: $(TARGETLIB)
65
c0e5039e
JG
66# XDEPFILES comes from the host config; TDEPFILES from the target config.
67OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(XDEPFILES) $(TDEPFILES)
5176a6bc
RP
68
69$(TARGETLIB): $(OFILES)
70 rm -f $(TARGETLIB)
1b494bfa
RP
71 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
72 $(RANLIB) $(TARGETLIB)
5176a6bc
RP
73
74stage1: force
75 - mkdir stage1
76 - mv -f $(STAGESTUFF) stage1
77
78stage2: force
79 - mkdir stage2
80 - mv -f $(STAGESTUFF) stage2
81
82stage3: force
83 - mkdir stage3
84 - mv -f $(STAGESTUFF) stage3
85
a01bf1fb
RP
86against=stage2
87
88comparison: force
89 for i in *.o ; do cmp $$i $(against)/$$i || exit 1 ; done
90
5176a6bc
RP
91de-stage1: force
92 - (cd stage1 ; mv -f $(STAGESTUFF) ..)
93 - rmdir stage1
99a42820 94
5176a6bc
RP
95de-stage2: force
96 - (cd stage2 ; mv -f $(STAGESTUFF) ..)
97 - rmdir stage2
99a42820 98
5176a6bc
RP
99de-stage3: force
100 - (cd stage3 ; mv -f $(STAGESTUFF) ..)
101 - rmdir stage3
99a42820
RP
102
103tags etags: TAGS
104
5176a6bc 105TAGS: force
453063fe 106 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
99a42820
RP
107
108clean:
3a26c0cd 109 rm -f *.[oa] *~ core *.E *.p *.ip
99a42820
RP
110
111clobber realclean: clean
112 rm -f libbfd.a TAGS
113
c6e7b0ed 114$(BFD_LIBS) $(BFD_BACKENDS) $(OPTIONAL_BACKENDS): libbfd.h $(BFD_H)
99a42820
RP
115
116saber:
117 #suppress 65 on bfd_map_over_sections
118 #suppress 66 on bfd_map_over_sections
119 #suppress 67 on bfd_map_over_sections
120 #suppress 68 on bfd_map_over_sections
121 #suppress 69 on bfd_map_over_sections
122 #suppress 70 on bfd_map_over_sections
123 #suppress 110 in bfd_map_over_sections
124 #suppress 112 in bfd_map_over_sections
125 #suppress 530
126 #suppress 590 in swap_exec_header
127 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
128 #suppress 590 in bfd_dont_truncate_arname
129 #suppress 590 on ignore
130 #suppress 590 on abfd
131 #setopt load_flags $(CFLAGS)
132 #load $(CFILES)
a5c6b4b3 133
99a42820
RP
134
135#-----------------------------------------------------------------------------
136# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
137#
138# 'VERSION' file must be present and contain a string of the form "x.y"
139#-----------------------------------------------------------------------------
140
141ver960.c: FORCE
142 rm -f ver960.c
143 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
144
145
146# This target should be invoked before building a new release.
147# 'VERSION' file must be present and contain a string of the form "x.y"
148#
149roll:
150 @V=`cat VERSION` ; \
151 MAJ=`sed 's/\..*//' VERSION` ; \
152 MIN=`sed 's/.*\.//' VERSION` ; \
153 V=$$MAJ.`expr $$MIN + 1` ; \
154 rm -f VERSION ; \
155 echo $$V >VERSION ; \
156 echo Version $$V
157
158# Dummy target to force execution of dependent targets.
159#
5176a6bc 160force:
99a42820 161
99a42820 162install:
6f715d66
SC
163 install -c libbfd.a $(libdir)
164 $(RANLIB) $(libdir)/libbfd.a
99a42820
RP
165
166# Target to uncomment host-specific lines in this makefile. Such lines must
167# have the following string beginning in column 1: #__<hostname>__#
168# Original Makefile is backed up as 'Makefile.old'.
169#
170# Invoke with: make make HOST=xxx
171#
172make:
173 -@if test $(HOST)x = x ; then \
174 echo '\aSpecify "make make HOST=???"'; \
175 exit 1; \
176 fi ; \
177 grep -s "^#The next line was generated by 'make make'" Makefile; \
178 if test $$? = 0 ; then \
179 echo "\aMakefile has already been processed with 'make make'";\
180 exit 1; \
181 fi ; \
182 mv -f Makefile Makefile.old; \
183 echo "#The next line was generated by 'make make'" >Makefile ; \
184 echo "HOST=$(HOST)" >>Makefile ; \
185 echo >>Makefile ; \
186 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
187
188Makefile: $(srcdir)/Makefile.in $(srcdir)/configure
f2e91404 189 (cd $(srcdir) ; \
b5132a6b
RP
190 ./configure +norecurse \
191 +destdir=$(destdir) \
3a26c0cd 192 `if [ "$(srcdir)" != "." ] ; then echo +subdirs; fi` \
20fdc627 193 $(host) +target=$(target);)
a5c6b4b3
SC
194
195dep: $(CFILES)
196 mkdep $(CFLAGS) $?
6f715d66
SC
197
198
6f715d66 199
12e7087f
JG
200headers:
201 cp $(srcdir)/bfd-in.h $(docdir)
202 cp $(srcdir)/libbfd-in.h $(docdir)
203 cp $(srcdir)/libcoff-in.h $(docdir)
b5493bc4 204 (cd $(docdir); $(MAKE) protos)
6f715d66 205 # Rebuild prototypes in bfd.h
12e7087f
JG
206 cp $(docdir)/bfd.h $(BFD_H)
207 cp $(docdir)/libbfd.h $(srcdir)/libbfd.h
208 cp $(docdir)/libcoff.h $(srcdir)/libcoff.h
209
210bfd.info:
b5493bc4 211 ( cd $(docdir); $(MAKE) bfd.info)
12e7087f
JG
212
213bfd.dvi:
b5493bc4 214 (cd $(docdir); $(MAKE) bfd.dvi)
12e7087f
JG
215
216bfd.ps:
b5493bc4 217 (cd $(docdir); $(MAKE) bfd.ps)
12e7087f
JG
218
219# What appears below is generated by a hacked mkdep using gcc -MM.
220
221# DO NOT DELETE THIS LINE -- mkdep uses it.
222# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
223
224libbfd.o : libbfd.c ../include/bfd.h ../include/obstack.h libbfd.h
225opncls.o : opncls.c ../include/bfd.h ../include/obstack.h libbfd.h
226bfd.o : bfd.c ../include/bfd.h ../include/obstack.h libbfd.h
227archive.o : archive.c ../include/bfd.h ../include/obstack.h libbfd.h \
228 ../include/ar.h ../include/ranlib.h
229targets.o : targets.c ../include/bfd.h ../include/obstack.h libbfd.h
230cache.o : cache.c ../include/bfd.h ../include/obstack.h libbfd.h
231archures.o : archures.c ../include/bfd.h ../include/obstack.h
232i386coff.o : i386coff.c ../include/bfd.h ../include/obstack.h libbfd.h \
233 ../include/i386coff.h ../include/internalcoff.h libcoff.h coffcode.h
234aout64.o : aout64.c
235aout32.o : aout32.c aoutx.h ../include/bfd.h ../include/ansidecl.h \
236 ../include/obstack.h libaout.h libbfd.h ../include/aout64.h \
237 ../include/stab.gnu.h ../include/stab.def ../include/ar.h
238sunos.o : sunos.c aoutf1.h ../include/bfd.h ../include/obstack.h \
239 libaout.h libbfd.h ../include/aout64.h ../include/stab.gnu.h \
240 ../include/stab.def ../include/ar.h
241demo64.o : demo64.c
242icoff.o : icoff.c ../include/bfd.h ../include/obstack.h libbfd.h \
243 ../include/intel-coff.h ../include/internalcoff.h libcoff.h coffcode.h
244srec.o : srec.c ../include/bfd.h ../include/obstack.h libbfd.h
245oasys.o : oasys.c ../include/bfd.h ../include/obstack.h libbfd.h \
246 ../include/oasys.h liboasys.h
247ieee.o : ieee.c ../include/bfd.h ../include/obstack.h libbfd.h \
248 ../include/ieee.h libieee.h
249m68kcoff.o : m68kcoff.c ../include/bfd.h ../include/obstack.h libbfd.h \
250 ../include/m68kcoff.h ../include/internalcoff.h libcoff.h coffcode.h
251amdcoff.o : amdcoff.c ../include/bfd.h ../include/obstack.h libbfd.h \
252 ../include/amdcoff.h ../include/internalcoff.h libcoff.h coffcode.h
253format.o : format.c ../include/sysdep.h ../include/bfd.h \
254 ../include/obstack.h libbfd.h
255section.o : section.c ../include/sysdep.h ../include/bfd.h \
256 ../include/obstack.h libbfd.h
257core.o : core.c ../include/sysdep.h ../include/bfd.h \
258 ../include/obstack.h libbfd.h
259syms.o : syms.c ../include/sysdep.h ../include/bfd.h \
260 ../include/obstack.h libbfd.h
261reloc.o : reloc.c ../include/sysdep.h ../include/bfd.h \
262 ../include/obstack.h libbfd.h
263m88k-bcs.o : m88k-bcs.c ../include/bfd.h ../include/obstack.h libbfd.h \
264 ../include/m88k-bcs.h ../include/internalcoff.h libcoff.h coffcode.h
265ecoff.o : ecoff.c ../include/bfd.h ../include/obstack.h libbfd.h \
266 ../include/ecoff.h ../include/internalcoff.h libcoff.h trad-core.h \
267 coffcode.h
268trad-core.o : trad-core.c ../include/bfd.h ../include/obstack.h \
269 libbfd.h libaout.h
270newsos3.o : newsos3.c ../include/bfd.h ../include/obstack.h libbfd.h \
271 ../include/aout64.h ../include/stab.gnu.h ../include/stab.def \
272 ../include/ar.h libaout.h
273bout.o : bout.c ../include/bfd.h ../include/obstack.h libbfd.h \
274 ../include/bout.h ../include/stab.gnu.h ../include/stab.def libaout.h
275
276# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.043537 seconds and 4 git commands to generate.