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