2 # Copyright (C) 1990, 1991 Free Software Foundation, Inc.
4 # This file is part of BFD, the Binary File Diddler.
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)
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.
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. */
26 INCDIR
= $(srcdir)/..
/include
29 #### host and target dependent Makefile fragments come in here.
33 CFLAGS
= -g
$(HDEFINES
) $(TDEFINES
) $(CSEARCH
) $(CSWITCHES
) # -DINTEL960VERSION
36 BFD_LIBS
= libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
39 BFD_BACKENDS
= oasys.o ieee.o srec.o sunos.o icoff.o b.out.o \
40 m88k-bcs.o coffswap.o ecoff.o
# trad-core.o
43 SYSDEP_H
=$(INCDIR
)/sysdep.h
45 # C source files that correspond to .o's.
46 CFILES
= libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \
47 sunos.c icoff.c b.out.c srec.c oasys.c ieee.c m88k-bcs.c \
48 coffswap.c ecoff.c trad-core.c
50 STAGESTUFF
= $(TARGETLIB
) $(OFILES
)
54 OFILES
= $(BFD_LIBS
) $(BFD_BACKENDS
)
56 $(TARGETLIB
): $(OFILES
)
58 ar clq
$(TARGETLIB
) $(OFILES
)
63 - mv
-f
$(STAGESTUFF
) stage1
67 - mv
-f
$(STAGESTUFF
) stage2
71 - mv
-f
$(STAGESTUFF
) stage3
74 - (cd stage1
; mv
-f
$(STAGESTUFF
) ..
)
78 - (cd stage2
; mv
-f
$(STAGESTUFF
) ..
)
82 - (cd stage3
; mv
-f
$(STAGESTUFF
) ..
)
88 etags
$(INCDIR
)/*.h
$(srcdir)/*.h
$(srcdir)/*.c
91 rm -f
*.
[oa
] *~ core
*.E
93 clobber realclean: clean
96 $(BFD_LIBS
) $(BFD_BACKENDS
): libbfd.h
$(BFD_H
)
99 #suppress 65 on bfd_map_over_sections
100 #suppress 66 on bfd_map_over_sections
101 #suppress 67 on bfd_map_over_sections
102 #suppress 68 on bfd_map_over_sections
103 #suppress 69 on bfd_map_over_sections
104 #suppress 70 on bfd_map_over_sections
105 #suppress 110 in bfd_map_over_sections
106 #suppress 112 in bfd_map_over_sections
108 #suppress 590 in swap_exec_header
109 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
110 #suppress 590 in bfd_dont_truncate_arname
111 #suppress 590 on ignore
112 #suppress 590 on abfd
113 #setopt load_flags $(CFLAGS)
115 m88k-bcs.o
: m88k-bcs.c
120 archive.o
: archive.c libbfd.h
$(BFD_H
) $(SYSDEP_H
)
121 archures.o
: archures.c
$(BFD_H
) $(SYSDEP_H
) archures.h
122 b.out.o
: b.out.c libbfd.h
$(BFD_H
) $(SYSDEP_H
) liba.out.h archures.h
123 m88k-bcs.o
: m88k-bcs.c libbfd.h
$(BFD_H
) $(SYSDEP_H
) libcoff.h coff-code.h archures.h
124 bfd.o
: bfd.c libbfd.h
$(BFD_H
) $(SYSDEP_H
)
125 cache.o
: cache.c libbfd.h
$(BFD_H
) $(SYSDEP_H
)
127 cplus-dem.o
: cplus-dem.c
128 filemode.o
: filemode.c
129 icoff.o
: icoff.c libbfd.h
$(BFD_H
) $(SYSDEP_H
) libcoff.h coff-code.h archures.h
130 libbfd.o
: libbfd.c libbfd.h
$(BFD_H
) $(SYSDEP_H
)
132 opncls.o
: opncls.c libbfd.h
$(BFD_H
) $(SYSDEP_H
)
133 sunos.o
: sunos.c libbfd.h
$(BFD_H
) $(SYSDEP_H
) liba.out.h
134 targets.o
: targets.c libbfd.h
$(BFD_H
) $(SYSDEP_H
)
136 #-----------------------------------------------------------------------------
137 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
139 # 'VERSION' file must be present and contain a string of the form "x.y"
140 #-----------------------------------------------------------------------------
144 echo
"char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
147 # This target should be invoked before building a new release.
148 # 'VERSION' file must be present and contain a string of the form "x.y"
152 MAJ
=`sed 's/\..*//' VERSION` ; \
153 MIN
=`sed 's/.*\.//' VERSION` ; \
154 V
=$$MAJ.
`expr $$MIN + 1` ; \
156 echo
$$V >VERSION
; \
159 # Dummy target to force execution of dependent targets.
165 # Target to uncomment host-specific lines in this makefile. Such lines must
166 # have the following string beginning in column 1: #__<hostname>__#
167 # Original Makefile is backed up as 'Makefile.old'.
169 # Invoke with: make make HOST=xxx
172 -@if
test $(HOST
)x
= x
; then \
173 echo
'\aSpecify "make make HOST=???"'; \
176 grep
-s
"^#The next line was generated by 'make make'" Makefile
; \
177 if
test $$?
= 0 ; then \
178 echo
"\aMakefile has already been processed with 'make make'";\
181 mv
-f Makefile Makefile.old
; \
182 echo
"#The next line was generated by 'make make'" >Makefile
; \
183 echo
"HOST=$(HOST)" >>Makefile
; \
185 sed
"s/^#__$(HOST)__#//" < Makefile.old
>>Makefile
187 Makefile
: $(srcdir)/Makefile.in
$(srcdir)/configure
189 .
/configure
+norecurse \
190 +destdir
=$(destdir
) \
191 `if [ "$(srcdir)" != "." ] ; then echo +f; fi` \
192 $(host
) +target
=$(target
))