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. */
27 INCDIR = $(srcdir)/../include
30 #### host and target dependent Makefile fragments come in here.
34 CFLAGS = -g $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION
37 BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
40 BFD_BACKENDS = oasys.o ieee.o srec.o aout64.o aout32.o sunos.o icoff.o demo64.o \
41 m68kcoff.o i386coff.o m88k-bcs.o coffswap.o ecoff.o newsos3.o # trad-core.o bout.o
44 SYSDEP_H=$(INCDIR)/sysdep.h
46 # C source files that correspond to .o's.
47 CFILES = libbfd.c opncls.c bfd.c archive.c targets.c cache.c archures.c \
48 i386coff.c aout64.c aout32.c sunos.c demo64.c icoff.c srec.c oasys.c ieee.c m68kcoff.c \
49 m88k-bcs.c coffswap.c ecoff.c trad-core.c newsos3.c #bout.c
51 STAGESTUFF = $(TARGETLIB) $(OFILES)
55 # XDEPFILES comes from the host config; TDEPFILES from the target config.
56 OFILES = $(BFD_LIBS) $(BFD_BACKENDS) $(XDEPFILES) $(TDEPFILES)
58 $(TARGETLIB): $(OFILES)
60 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
61 $(RANLIB) $(TARGETLIB)
65 - mv -f $(STAGESTUFF) stage1
69 - mv -f $(STAGESTUFF) stage2
73 - mv -f $(STAGESTUFF) stage3
78 for i in *.o ; do cmp $$i $(against)/$$i || exit 1 ; done
81 - (cd stage1 ; mv -f $(STAGESTUFF) ..)
85 - (cd stage2 ; mv -f $(STAGESTUFF) ..)
89 - (cd stage3 ; mv -f $(STAGESTUFF) ..)
95 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
98 rm -f *.[oa] *~ core *.E
100 clobber realclean: clean
103 $(BFD_LIBS) $(BFD_BACKENDS): libbfd.h $(BFD_H)
106 #suppress 65 on bfd_map_over_sections
107 #suppress 66 on bfd_map_over_sections
108 #suppress 67 on bfd_map_over_sections
109 #suppress 68 on bfd_map_over_sections
110 #suppress 69 on bfd_map_over_sections
111 #suppress 70 on bfd_map_over_sections
112 #suppress 110 in bfd_map_over_sections
113 #suppress 112 in bfd_map_over_sections
115 #suppress 590 in swap_exec_header
116 #suppress 590 in _bfd_dummy_core_file_matches_executable_p
117 #suppress 590 in bfd_dont_truncate_arname
118 #suppress 590 on ignore
119 #suppress 590 on abfd
120 #setopt load_flags $(CFLAGS)
124 #-----------------------------------------------------------------------------
125 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
127 # 'VERSION' file must be present and contain a string of the form "x.y"
128 #-----------------------------------------------------------------------------
132 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
135 # This target should be invoked before building a new release.
136 # 'VERSION' file must be present and contain a string of the form "x.y"
140 MAJ=`sed 's/\..*//' VERSION` ; \
141 MIN=`sed 's/.*\.//' VERSION` ; \
142 V=$$MAJ.`expr $$MIN + 1` ; \
144 echo $$V >VERSION ; \
147 # Dummy target to force execution of dependent targets.
153 # Target to uncomment host-specific lines in this makefile. Such lines must
154 # have the following string beginning in column 1: #__<hostname>__#
155 # Original Makefile is backed up as 'Makefile.old'.
157 # Invoke with: make make HOST=xxx
160 -@if test $(HOST)x = x ; then \
161 echo '
\aSpecify "make make HOST=???"'; \
164 grep -s "^#The next line was generated by 'make make'" Makefile; \
165 if test $$? = 0 ; then \
166 echo "
\aMakefile has already been processed with 'make make'";\
169 mv -f Makefile Makefile.old; \
170 echo "#The next line was generated by 'make make'" >Makefile ; \
171 echo "HOST=$(HOST)" >>Makefile ; \
173 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
175 Makefile: $(srcdir)/Makefile.in $(srcdir)/configure
177 ./configure +norecurse \
178 +destdir=$(destdir) \
179 `if [ "$(srcdir)" != "." ] ; then echo +f; fi` \
180 $(host) +target=$(target);)