Added 386 support!
[deliverable/binutils-gdb.git] / bfd / Makefile.in
CommitLineData
99a42820
RP
1#
2# Copyright (C) 1990, 1991 Free Software Foundation, Inc.
3#
4# This file is part of BFD, the Binary File Diddler.
5#
6# BFD 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 1, or (at your option)
9# any later version.
10#
11# BFD 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 BFD; see the file COPYING. If not, write to
18# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20# $Id$
21
22srcdir = .
23
24RANLIB = ranlib
1b494bfa
RP
25AR = ar
26AR_FLAGS = clq
d6a554ae 27INCDIR = $(srcdir)/../include
99a42820 28CSEARCH = -I$(INCDIR)
a5c6b4b3 29DEP = mkdep
99a42820 30#### host and target dependent Makefile fragments come in here.
99a42820
RP
31###
32
5176a6bc
RP
33TARGETLIB = libbfd.a
34CFLAGS = -g $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION
99a42820
RP
35
36
726cc6ef 37BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
f7895c87 38 archures.o
99a42820 39
19b03b7a 40BFD_BACKENDS = oasys.o ieee.o srec.o aout64.o aout32.o sunos.o icoff.o demo64.o \
20fdc627 41 m68kcoff.o i386coff.o m88k-bcs.o coffswap.o ecoff.o newsos3.o # trad-core.o bout.o
99a42820
RP
42
43BFD_H=$(INCDIR)/bfd.h
44SYSDEP_H=$(INCDIR)/sysdep.h
45
46# C source files that correspond to .o's.
47CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \
20fdc627 48 i386coff.c aout64.c aout32.c sunos.c demo64.c icoff.c srec.c oasys.c ieee.c m68kcoff.c \
19b03b7a 49 m88k-bcs.c coffswap.c ecoff.c trad-core.c newsos3.c #bout.c
99a42820 50
5176a6bc
RP
51STAGESTUFF = $(TARGETLIB) $(OFILES)
52
53all: $(TARGETLIB)
54
55OFILES = $(BFD_LIBS) $(BFD_BACKENDS)
56
57$(TARGETLIB): $(OFILES)
58 rm -f $(TARGETLIB)
1b494bfa
RP
59 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
60 $(RANLIB) $(TARGETLIB)
5176a6bc
RP
61
62stage1: force
63 - mkdir stage1
64 - mv -f $(STAGESTUFF) stage1
65
66stage2: force
67 - mkdir stage2
68 - mv -f $(STAGESTUFF) stage2
69
70stage3: force
71 - mkdir stage3
72 - mv -f $(STAGESTUFF) stage3
73
74de-stage1: force
75 - (cd stage1 ; mv -f $(STAGESTUFF) ..)
76 - rmdir stage1
99a42820 77
5176a6bc
RP
78de-stage2: force
79 - (cd stage2 ; mv -f $(STAGESTUFF) ..)
80 - rmdir stage2
99a42820 81
5176a6bc
RP
82de-stage3: force
83 - (cd stage3 ; mv -f $(STAGESTUFF) ..)
84 - rmdir stage3
99a42820
RP
85
86tags etags: TAGS
87
5176a6bc 88TAGS: force
453063fe 89 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
99a42820
RP
90
91clean:
5176a6bc 92 rm -f *.[oa] *~ core *.E
99a42820
RP
93
94clobber realclean: clean
95 rm -f libbfd.a TAGS
96
97$(BFD_LIBS) $(BFD_BACKENDS): libbfd.h $(BFD_H)
98
99saber:
100 #suppress 65 on bfd_map_over_sections
101 #suppress 66 on bfd_map_over_sections
102 #suppress 67 on bfd_map_over_sections
103 #suppress 68 on bfd_map_over_sections
104 #suppress 69 on bfd_map_over_sections
105 #suppress 70 on bfd_map_over_sections
106 #suppress 110 in bfd_map_over_sections
107 #suppress 112 in bfd_map_over_sections
108 #suppress 530
109 #suppress 590 in swap_exec_header
110 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
111 #suppress 590 in bfd_dont_truncate_arname
112 #suppress 590 on ignore
113 #suppress 590 on abfd
114 #setopt load_flags $(CFLAGS)
115 #load $(CFILES)
a5c6b4b3 116
99a42820
RP
117
118#-----------------------------------------------------------------------------
119# 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
120#
121# 'VERSION' file must be present and contain a string of the form "x.y"
122#-----------------------------------------------------------------------------
123
124ver960.c: FORCE
125 rm -f ver960.c
126 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
127
128
129# This target should be invoked before building a new release.
130# 'VERSION' file must be present and contain a string of the form "x.y"
131#
132roll:
133 @V=`cat VERSION` ; \
134 MAJ=`sed 's/\..*//' VERSION` ; \
135 MIN=`sed 's/.*\.//' VERSION` ; \
136 V=$$MAJ.`expr $$MIN + 1` ; \
137 rm -f VERSION ; \
138 echo $$V >VERSION ; \
139 echo Version $$V
140
141# Dummy target to force execution of dependent targets.
142#
5176a6bc 143force:
99a42820 144
99a42820 145install:
99a42820
RP
146
147# Target to uncomment host-specific lines in this makefile. Such lines must
148# have the following string beginning in column 1: #__<hostname>__#
149# Original Makefile is backed up as 'Makefile.old'.
150#
151# Invoke with: make make HOST=xxx
152#
153make:
154 -@if test $(HOST)x = x ; then \
155 echo '\aSpecify "make make HOST=???"'; \
156 exit 1; \
157 fi ; \
158 grep -s "^#The next line was generated by 'make make'" Makefile; \
159 if test $$? = 0 ; then \
160 echo "\aMakefile has already been processed with 'make make'";\
161 exit 1; \
162 fi ; \
163 mv -f Makefile Makefile.old; \
164 echo "#The next line was generated by 'make make'" >Makefile ; \
165 echo "HOST=$(HOST)" >>Makefile ; \
166 echo >>Makefile ; \
167 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
168
169Makefile: $(srcdir)/Makefile.in $(srcdir)/configure
f2e91404 170 (cd $(srcdir) ; \
b5132a6b
RP
171 ./configure +norecurse \
172 +destdir=$(destdir) \
173 `if [ "$(srcdir)" != "." ] ; then echo +f; fi` \
20fdc627 174 $(host) +target=$(target);)
a5c6b4b3
SC
175
176dep: $(CFILES)
177 mkdep $(CFLAGS) $?
This page took 0.043309 seconds and 4 git commands to generate.