* Makefile.in: Better lex support.
[deliverable/binutils-gdb.git] / binutils / Makefile.in
1 # Makefile for GNU binary-file utilities
2 # Copyright (C) 1989-1992 Free Software Foundation, Inc.
3
4 # This file is part of GNU binutils.
5
6 # This program 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 2 of the License, or
9 # (at your option) any later version.
10 #
11 # This program 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 this program; if not, write to the Free Software
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 #$Id$
21
22 srcdir = .
23
24 prefix = /usr/local
25
26 program_prefix =
27 exec_prefix = $(prefix)
28 bindir = $(exec_prefix)/bin
29 libdir = $(exec_prefix)/lib
30 tooldir = $(libdir)
31
32 datadir = $(prefix)/lib
33 mandir = $(prefix)/man
34 man1dir = $(mandir)/man1
35 man2dir = $(mandir)/man2
36 man3dir = $(mandir)/man3
37 man4dir = $(mandir)/man4
38 man5dir = $(mandir)/man5
39 man6dir = $(mandir)/man6
40 man7dir = $(mandir)/man7
41 man8dir = $(mandir)/man8
42 man9dir = $(mandir)/man9
43 infodir = $(prefix)/info
44 includedir = $(prefix)/include
45 docdir = $(datadir)/doc
46
47 SHELL = /bin/sh
48
49 INSTALL = install -c
50 INSTALL_PROGRAM = $(INSTALL)
51 INSTALL_DATA = $(INSTALL)
52
53 AR = ar
54 AR_FLAGS = qv
55 CFLAGS = -g
56 MAKEINFO = makeinfo
57 RANLIB = ranlib
58 BISONFLAGS = -tvd
59 TEXI2ROFF=texi2roff
60
61 BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/ ; else echo bison -y ; fi`
62 # Comment these out if using lex.
63 LEX_OPTIONS = -I -Cem
64 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex -S../flex/flex.skel ; else echo flex ; fi`
65
66 # Distribution version
67 VERSION=1.97
68 # Distribution name
69 DIST_NAME=binutils-${VERSION}
70
71 version=`./../gcc/gcc -dumpversion`
72
73 # Where to find texinfo.tex to format docn with TeX
74 TEXIDIR = $(srcdir)/../texinfo/fsf
75
76 MANPAGES= ar.1 nm.1 objdump.1 ranlib.1 size.1 strip.1
77
78 #CC=gcc -Wall
79 # these two are almost the same program
80 AR_PROG=ar
81 RANLIB_PROG=ranlib
82
83 # copy and strip should be the same program
84 COPY_PROG=copy
85 STRIP_PROG=strip
86
87 # These should all be the same program too.
88 SIZE_PROG=size
89 NM_PROG=nm
90 OBJDUMP_PROG=objdump
91
92 PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRIP_PROG) $(RANLIB_PROG)
93 STAGESTUFF = $(PROGS) *.o
94
95 BASEDIR = $(srcdir)/..
96 LIBDIR = ./../bfd
97
98 #### host and target dependant Makefile fragments come in here.
99 ###
100
101 INCDIR = $(BASEDIR)/include
102
103 .c.o:
104 $(CC) -c $(CFLAGS) -I. -I$(srcdir) -I$(INCDIR) $(HDEFINES) $(TDEFINES) $<
105
106 # When adding .o files, to make VPATH work in Sun Make, you have to
107 # also add a foo.o: foo.c line at the bottom of the file.
108 DISASMS = m68k-pinsn.o i960-pinsn.o i386-pinsn.o sparc-pinsn.o am29k-pinsn.o
109
110 #\f
111 ## Random definitions
112 # Hopefully all these may be flushed once we get configuration down pat.
113
114 # alloca only needed for systems which don't have it and when cc != gcc.
115 # ALLOCA = alloca.o
116
117 # nm tries to malloc enough space for the string table. The old GNU malloc
118 # rounds this up to a power of two (e.g. 5M becomes 8M), and so it might
119 # fail unnecessarily. I've also seen some Unix malloc's fail, even when
120 # there is enough memory. So use the new GNU malloc.
121 # MALLOC = gmalloc.o
122
123 # Use the GNU getopt unless you have problems with it.
124 # The IRIS version could probably benefit from being assembled with
125 # libmalloc rather than the ordinary malloc.
126 LIBIBERTY = ./../libiberty/libiberty.a
127
128 # Code shared by all the binutils.
129 BULIBS = bucomm.o version.o filemode.o
130
131 ADDL_LIBS = $(MALLOC) $(BULIBS) $(BFD) $(LIBIBERTY)
132
133 BFD = $(LIBDIR)/libbfd.a
134 #\f
135 ## The rules
136
137 all: $(ADDL_LIBS) $(PROGS)
138
139 check:
140 /bin/sh $(srcdir)/sanity.sh .
141
142 test-install:
143 /bin/sh $(srcdir)/sanity.sh $(bindir)
144
145 info: binutils.info
146
147 #$(BFD):$(LIBDIR)/../common/*.c
148 # (cd $(LIBDIR); make)
149
150 $(SIZE_PROG): $(ADDL_LIBS) size.o $(BFD)
151 $(CC) $(LDFLAGS) $(CFLAGS) -o $(SIZE_PROG) size.o $(ADDL_LIBS) $(LOADLIBES)
152
153 $(COPY_PROG): $(ADDL_LIBS) copy.o not-strip.o $(BFD)
154 $(CC) $(LDFLAGS) $(CFLAGS) -o $(COPY_PROG) copy.o not-strip.o $(ADDL_LIBS) $(LOADLIBES)
155
156 $(STRIP_PROG): $(ADDL_LIBS) copy.o is-strip.o $(BFD)
157 $(CC) $(LDFLAGS) $(CFLAGS) -o $(STRIP_PROG) copy.o is-strip.o $(ADDL_LIBS) $(LOADLIBES)
158
159 $(NM_PROG): $(ADDL_LIBS) nm.o $(BFD)
160 $(CC) $(LDFLAGS) $(CFLAGS) -o $(NM_PROG) nm.o $(ADDL_LIBS) $(LOADLIBES)
161
162 $(OBJDUMP_PROG): $(ADDL_LIBS) size.o objdump.o $(DISASMS) $(BFD)
163 $(CC) $(LDFLAGS) $(CFLAGS) -o $(OBJDUMP_PROG) objdump.o $(DISASMS) $(ADDL_LIBS) $(LOADLIBES)
164
165 arparse.c:arparse.y
166 $(BISON) $(BISONFLAGS) $(VPATH)/arparse.y
167 mv y.tab.c arparse.c
168 mv y.tab.h arparse.h
169
170
171 arlex.c:arlex.l
172 $(LEX) $(LEX_OPTIONS) -t $(VPATH)/arlex.l >arlex.c
173
174 $(AR_PROG): $(ADDL_LIBS) ar.o arparse.o arlex.o not-ranlib.o $(BFD) arsup.o
175 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o arparse.o arlex.o arsup.o not-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
176
177 $(RANLIB_PROG): $(ADDL_LIBS) ar.o is-ranlib.o arparse.o arlex.o arsup.o $(BFD)
178 $(CC) $(LDFLAGS) $(CFLAGS) -o $(RANLIB_PROG) ar.o arparse.o arlex.o arsup.o is-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
179
180 # This rule creates a single binary that switches between ar and ranlib
181 # by looking at argv[0]. Use this kludge to save some disk space.
182 # However, you have to install things by hand.
183 # (That is after 'make install', replace the installed ranlib by a link to ar.)
184
185 # Alternatively, you can install ranlib.sh as ranlib.
186
187 ar_with_ranlib: $(ADDL_LIBS) ar.o maybe-ranlib.o $(BFD)
188 $(CC) $(LDFLAGS) $(CFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(LOADLIBES)
189 -rm -f $(RANLIB_PROG)
190 -ln $(AR_PROG) $(RANLIB_PROG)
191
192 # copy and strip in one binary that uses argv[0] to decide its action.
193
194 copy_with_strip: $(ADDL_LIBS) copy.o maybe-strip.o $(BFD)
195 $(CC) $(LDFLAGS) $(CFLAGS) -o $(COPY_PROG) copy.o maybe-strip.o $(ADDL_LIBS) $(LOADLIBES)
196 -rm -f $(STRIP_PROG)
197 -ln $(COPY_PROG) $(STRIP_PROG)
198
199 stage1: force
200 - mkdir stage1
201 - mv -f $(STAGESTUFF) stage1
202
203 stage2: force
204 - mkdir stage2
205 - mv -f $(STAGESTUFF) stage2
206
207 stage3: force
208 - mkdir stage3
209 - mv -f $(STAGESTUFF) stage3
210
211 against=stage2
212
213 comparison: force
214 for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
215
216 de-stage1: force
217 - (cd stage1 ; mv -f * ..)
218 - rmdir stage1
219
220 de-stage2: force
221 - (cd stage2 ; mv -f * ..)
222 - rmdir stage2
223
224 de-stage3: force
225 - (cd stage3 ; mv -f * ..)
226 - rmdir stage3
227
228 ######################################################################
229 # DOCUMENTATION TARGETS
230 # TeX output
231 binutils.dvi: $(srcdir)/binutils.texi
232 TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex $(srcdir)/binutils.texi
233 texindex binutils.??
234 TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex $(srcdir)/binutils.texi
235
236 # info file for online browsing
237 binutils.info: $(srcdir)/binutils.texi
238 $(MAKEINFO) -o binutils.info $(srcdir)/binutils.texi
239
240 # different targets for -ms, -mm, -me
241 # Try to use a recent texi2roff. v2 was put on prep in jan91.
242 # If you want an index, see texi2roff doc for postprocessing
243 # and add -i to texi2roff invocations below.
244 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
245 # correspondint -e lines when later texi2roff's are current)
246 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
247 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
248 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
249 # + @alphaenumerate is ridiculously new, turned into @enumerate
250
251 # roff output (-ms)
252 binutils.ms: $(srcdir)/binutils.texi
253 sed -e '/\\input texinfo/d' \
254 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
255 -e '/^@ifinfo/,/^@end ifinfo/d' \
256 -e '/^@c/d' \
257 -e 's/{.*,,/{/' \
258 -e 's/@ / /g' \
259 -e 's/^@alphaenumerate/@enumerate/g' \
260 -e 's/^@end alphaenumerate/@end enumerate/g' \
261 $(srcdir)/binutils.texi | \
262 $(TEXI2ROFF) -ms | \
263 sed -e 's/---/\\(em/g' \
264 >binutils.ms
265
266 # roff output (-mm)
267 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
268 # try leaving them in
269 binutils.mm: $(srcdir)/binutils.texi
270 sed -e '/\\input texinfo/d' \
271 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
272 -e '/^@ifinfo/,/^@end ifinfo/d' \
273 -e '/^@c/d' \
274 -e 's/{.*,,/{/' \
275 -e '/@noindent/d' \
276 -e 's/@ / /g' \
277 -e 's/^@alphaenumerate/@enumerate/g' \
278 -e 's/^@end alphaenumerate/@end enumerate/g' \
279 $(srcdir)/binutils.texi | \
280 $(TEXI2ROFF) -mm | \
281 sed -e 's/---/\\(em/g' \
282 >binutils.mm
283
284 # roff output (-me)
285 binutils.me: $(srcdir)/binutils.texi
286 sed -e '/\\input texinfo/d' \
287 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
288 -e '/^@ifinfo/,/^@end ifinfo/d' \
289 -e '/^@c/d' \
290 -e 's/{.*,,/{/' \
291 -e 's/@ / /g' \
292 -e 's/^@alphaenumerate/@enumerate/g' \
293 -e 's/^@end alphaenumerate/@end enumerate/g' \
294 $(srcdir)/binutils.texi | \
295 $(TEXI2ROFF) -me | \
296 sed -e 's/---/\\(em/g' \
297 >binutils.me
298
299
300 ######################################################################
301
302 clean:
303 -rm -f *.o *~ \#* core $(STAGESTUFF) TAGS binutils.?? binutils.???
304
305 etags tags: TAGS
306
307 TAGS: force
308 etags $(INCDIR)/*.h $(BFDSRC)/*.[hc] *.[hc]
309
310 realclean: clean
311 -rm -f $(STAGESTUFF) TAGS
312
313 install: all
314 for i in $(PROGS) ; do \
315 $(INSTALL_PROGRAM) $$i $(bindir)/$(program_prefix)$$i ; \
316 done
317 for i in $(MANPAGES) ; do \
318 $(INSTALL_DATA) $(srcdir)/$$i $(man1dir)/$(program_prefix)$$i ; \
319 done
320
321 install-info: info
322 for i in *.info* ; do \
323 $(INSTALL_DATA) $$i $(infodir)/$$i ; \
324 done
325
326 clean-info:
327 -rm -rf *.info*
328
329 dist: $(DIST_NAME).tar.Z
330
331 $(DIST_NAME).tar.Z:
332 cd ../..; rm -f $(DIST_NAME); ln -s devo $(DIST_NAME)
333 make arparse.c arlex.c binutils.mm -f Makefile.in
334 cd ../ld; make ldgram.c ldgram.h ldlex.c ld.mm -f Makefile.in
335 cd ../..; tar chf - $(DIST_NAME) | compress >$(DIST_NAME).tar.Z
336 rm -rf ../../$(DIST_NAME)
337
338 # These get around a bug in Sun Make in SunOS 4.1.1
339 alloca.o:alloca.c
340 am29k-pinsn.o: am29k-pinsn.c
341 ar.o: ar.c
342 arsup.o: arsup.c
343 bucomm.o: bucomm.c
344 copy.o: copy.c
345 cplus-dem.o:cplus-dem.c
346 filemode.o:filemode.c
347 getopt.o:getopt.c
348 getopt1.o:getopt1.c
349 gmalloc.o:gmalloc.c
350 i960-pinsn.o: i960-pinsn.c
351 is-ranlib.o:is-ranlib.c
352 is-strip.o:is-strip.c
353 m68k-pinsn.o: m68k-pinsn.c
354 maybe-ranlib.o:maybe-ranlib.c
355 maybe-strip.o:maybe-strip.c
356 nm.o: nm.c
357 not-ranlib.o:not-ranlib.c
358 not-strip.o:not-strip.c
359 objdump.o: objdump.c
360 size.o: size.c
361 sparc-pinsn.o: sparc-pinsn.c
362 i386-pinsn.o: i386-pinsn.c
363 strip.o:strip.c
364 version.o: $(srcdir)/version.c
365 $(CC) $(CFLAGS) -I. -I$(srcdir) -I$(INCDIR) $(HDEFINES) $(TDEFINES) -DVERSION='"$(VERSION)"' -c $(srcdir)/version.c
366
367 #-----------------------------------------------------------------------------
368 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
369 #
370 # 'VERSION' file must be present and contain a string of the form "x.y"
371 #-----------------------------------------------------------------------------
372
373 ver960.c: FORCE
374 rm -f ver960.c
375 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
376
377
378 # Dummy target to force execution of dependent targets.
379 #
380 force:
381
382 # Target to uncomment host-specific lines in this makefile. Such lines must
383 # have the following string beginning in column 1: #__<hostname>__#
384 # Original Makefile is backed up as 'Makefile.old'.
385 #
386 # Invoke with: make make HOST=xxx
387 #
388 make:
389 -@if test $(HOST)x = x ; then \
390 echo '\aSpecify "make make HOST=???"'; \
391 exit 1; \
392 fi ; \
393 grep -s "^#The next line was generated by 'make make'" Makefile; \
394 if test $$? = 0 ; then \
395 echo "\aMakefile has already been processed with 'make make'";\
396 exit 1; \
397 fi ; \
398 mv -f Makefile Makefile.old; \
399 echo "#The next line was generated by 'make make'" >Makefile ; \
400 echo "HOST=$(HOST)" >>Makefile ; \
401 echo >>Makefile ; \
402 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
403
404 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
405 $(SHELL) ./config.status
406
407 ### Local Variables: ***
408 ### mode:fundamental ***
409 ### page-delimiter: "^#\f" ***
410 ### End: ***
411 ### end of file
This page took 0.038433 seconds and 5 git commands to generate.