Merge devo/bfd with GDB's bfd.
[binutils-gdb.git] / binutils / Makefile.in
1 ### Makefile for GNU binary-file utilities
2
3 #$Id$
4
5 srcdir = .
6 destdir = /usr/local
7
8 version=`$(srcdir)/../gcc$(subdir)/gcc -dumpversion`
9 prefix = $(destdir)
10 bindir = $(prefix)/bin
11 libdir = $(prefix)/lib
12 libsubdir = $(libdir)/gcc/$(target)/$(version)
13
14 INSTALL = install -c
15 INSTALL_PROGRAM = $(INSTALL)
16 INSTALL_FILE = $(INSTALL)
17
18 ## Configuration options
19 # These should be all you need set before compiling
20
21 #CC=gcc -Wall
22 # these two should be the same program
23 AR_PROG=ar
24 RANLIB_PROG=ranlib
25
26 # copy and strip should be the same program
27 COPY_PROG=copy
28 STRIP_PROG=strip
29
30 # These should all be the same program too.
31 SIZE_PROG=size
32 NM_PROG=nm
33 OBJDUMP_PROG=objdump
34
35 PROGS = $(SIZE_PROG) $(COPY_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRIP_PROG) $(RANLIB_PROG)
36
37 BASEDIR = $(srcdir)/..
38 LIBDIR = $(srcdir)/../bfd$(subdir)
39
40 #### host and target dependant Makefile fragments come in here.
41 ###
42
43 INCDIR = $(BASEDIR)/include
44
45 CFLAGS = -g -I$(srcdir)/../include -I$(INCDIR) $(HDEFINES) $(TDEFINES)
46
47 DISASMS = m68k-pinsn.o i960-pinsn.o sparc-pinsn.o
48
49 #\f
50 ## Random definitions
51 # Hopefully all these may be flushed once we get configuration down pat.
52
53 # alloca only needed for systems which don't have it and when cc != gcc.
54 # ALLOCA = alloca.o
55
56 # nm tries to malloc enough space for the string table. The old GNU malloc
57 # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might
58 # fail unnecessarily. I've also seen some Unix malloc's fail, even when
59 # there is enough memory. So use the new GNU malloc.
60 # MALLOC = gmalloc.o
61
62 # Use the GNU getopt unless you have problems with it.
63 # The IRIS version could probably benefit from being assembled with
64 # libmalloc rather than the ordinary malloc.
65 LIBIBERTY = $(srcdir)/../libiberty$(subdir)/libiberty.a
66
67 # Code shared by all the binutils.
68 BULIBS = bucomm.o version.o filemode.o
69
70 ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY)
71
72 BFD = $(LIBDIR)/libbfd.a
73 #\f
74 ## The rules
75
76 all: $(ADDL_LIBS) $(PROGS)
77
78
79 #$(BFD):$(LIBDIR)/../common/*.c
80 # (cd $(LIBDIR); make)
81
82 $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
83 $(CC) $(LDFLAGS) $(CFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(LOADLIBES)
84
85 $(COPY_PROG): $(ADDL_LIBS) copy.o $(BFD)
86 $(CC) $(LDFLAGS) $(CFLAGS) -o $(COPY_PROG) copy.o $(ADDL_LIBS) $(LOADLIBES)
87
88 $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
89 $(CC) $(LDFLAGS) $(CFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(LOADLIBES)
90
91 $(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(DISASMS) $(BFD)
92 $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(DISASMS) $(ADDL_LIBS) $(LOADLIBES)
93
94 $(AR_PROG): $(ADDL_LIBS) ar.o $(BFD)
95 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o $(ADDL_LIBS) $(LOADLIBES)
96
97 $(RANLIB_PROG): $(AR_PROG)
98 -rm -f $(RANLIB_PROG)
99 -ln $(AR_PROG) $(RANLIB_PROG)
100
101 $(STRIP_PROG): $(COPY_PROG)
102 -rm -f $(STRIP_PROG)
103 -ln $(COPY_PROG) $(STRIP_PROG)
104
105 stage1: force
106 - mkdir stage1
107 - mv -f *.o $(PROGS) stage1
108
109 stage2: force
110 - mkdir stage2
111 - mv -f *.o $(PROGS) stage2
112
113 stage3: force
114 - mkdir stage3
115 - mv -f *.o $(PROGS) stage3
116
117 de-stage1: force
118 - (cd stage1 ; mv -f * ..)
119 - rmdir stage1
120
121 de-stage2: force
122 - (cd stage2 ; mv -f * ..)
123 - rmdir stage2
124
125 de-stage3: force
126 - (cd stage3 ; mv -f * ..)
127 - rmdir stage3
128
129 clean:
130 -rm -f *.o *~ \#* core $(PROGS) TAGS
131
132 etags tags: TAGS
133
134 TAGS: force
135 etags $(INCDIR)/*.h $(BFDSRC)/*.[hc] *.[hc]
136
137 realclean: clean
138 -rm -f $(PROGS) TAGS
139
140 install: $(PROGS)
141 for i in $(PROGS) ; do \
142 $(INSTALL_PROGRAM) $$i $(destdir)/bin/$$i ; \
143 done
144
145 bucomm.o: bucomm.c
146 version.o: version.c
147 size.o: size.c
148 copy.o: copy.c
149 objdump.o: objdump.c
150 m68k-pinsn.o: m68k-pinsn.c
151 m68k-pinsn.o: ./m68k-opcode.h
152 i960-pinsn.o: i960-pinsn.c
153 sparc-pinsn.o: sparc-pinsn.c
154 sparc-pinsn.o: ./sparc-opcode.h
155 nm.o: nm.c
156 ar.o: ar.c
157 getopt.o:getopt.c
158 getopt1.o:getopt1.c
159 filemode.o:filemode.c
160 #-----------------------------------------------------------------------------
161 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
162 #
163 # 'VERSION' file must be present and contain a string of the form "x.y"
164 #-----------------------------------------------------------------------------
165
166 ver960.c: FORCE
167 rm -f ver960.c
168 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
169
170
171 # Dummy target to force execution of dependent targets.
172 #
173 force:
174
175 # Target to uncomment host-specific lines in this makefile. Such lines must
176 # have the following string beginning in column 1: #__<hostname>__#
177 # Original Makefile is backed up as 'Makefile.old'.
178 #
179 # Invoke with: make make HOST=xxx
180 #
181 make:
182 -@if test $(HOST)x = x ; then \
183 echo '\aSpecify "make make HOST=???"'; \
184 exit 1; \
185 fi ; \
186 grep -s "^#The next line was generated by 'make make'" Makefile; \
187 if test $$? = 0 ; then \
188 echo "\aMakefile has already been processed with 'make make'";\
189 exit 1; \
190 fi ; \
191 mv -f Makefile Makefile.old; \
192 echo "#The next line was generated by 'make make'" >Makefile ; \
193 echo "HOST=$(HOST)" >>Makefile ; \
194 echo >>Makefile ; \
195 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
196
197 #\f
198
199 Makefile: $(srcdir)/Makefile.in $(srcdir)/configure
200 (cd $(srcdir) ; \
201 ./configure +norecurse \
202 +destdir=$(destdir) \
203 `if [ "$(srcdir)" != "." ] ; then echo +f; fi` \
204 $(host) +target=$(target))
205
206 ### Local Variables: ***
207 ### mode:fundamental ***
208 ### page-delimiter: "^#\f" ***
209 ### End: ***
210 ### end of file