Added 386 support!
[deliverable/binutils-gdb.git] / bfd / Makefile.in
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
22 srcdir = .
23
24 RANLIB = ranlib
25 AR = ar
26 AR_FLAGS = clq
27 INCDIR = $(srcdir)/../include
28 CSEARCH = -I$(INCDIR)
29 DEP = mkdep
30 #### host and target dependent Makefile fragments come in here.
31 ###
32
33 TARGETLIB = libbfd.a
34 CFLAGS = -g $(HDEFINES) $(TDEFINES) $(CSEARCH) $(CSWITCHES) # -DINTEL960VERSION
35
36
37 BFD_LIBS = libbfd.o opncls.o bfd.o archive.o targets.o cache.o \
38 archures.o
39
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
42
43 BFD_H=$(INCDIR)/bfd.h
44 SYSDEP_H=$(INCDIR)/sysdep.h
45
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
50
51 STAGESTUFF = $(TARGETLIB) $(OFILES)
52
53 all: $(TARGETLIB)
54
55 OFILES = $(BFD_LIBS) $(BFD_BACKENDS)
56
57 $(TARGETLIB): $(OFILES)
58 rm -f $(TARGETLIB)
59 $(AR) $(AR_FLAGS) $(TARGETLIB) $(OFILES)
60 $(RANLIB) $(TARGETLIB)
61
62 stage1: force
63 - mkdir stage1
64 - mv -f $(STAGESTUFF) stage1
65
66 stage2: force
67 - mkdir stage2
68 - mv -f $(STAGESTUFF) stage2
69
70 stage3: force
71 - mkdir stage3
72 - mv -f $(STAGESTUFF) stage3
73
74 de-stage1: force
75 - (cd stage1 ; mv -f $(STAGESTUFF) ..)
76 - rmdir stage1
77
78 de-stage2: force
79 - (cd stage2 ; mv -f $(STAGESTUFF) ..)
80 - rmdir stage2
81
82 de-stage3: force
83 - (cd stage3 ; mv -f $(STAGESTUFF) ..)
84 - rmdir stage3
85
86 tags etags: TAGS
87
88 TAGS: force
89 etags $(INCDIR)/*.h $(srcdir)/*.h $(srcdir)/*.c
90
91 clean:
92 rm -f *.[oa] *~ core *.E
93
94 clobber realclean: clean
95 rm -f libbfd.a TAGS
96
97 $(BFD_LIBS) $(BFD_BACKENDS): libbfd.h $(BFD_H)
98
99 saber:
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)
116
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
124 ver960.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 #
132 roll:
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 #
143 force:
144
145 install:
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 #
153 make:
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
169 Makefile: $(srcdir)/Makefile.in $(srcdir)/configure
170 (cd $(srcdir) ; \
171 ./configure +norecurse \
172 +destdir=$(destdir) \
173 `if [ "$(srcdir)" != "." ] ; then echo +f; fi` \
174 $(host) +target=$(target);)
175
176 dep: $(CFILES)
177 mkdep $(CFLAGS) $?
This page took 0.052498 seconds and 4 git commands to generate.