* top.c (execute_command): Remove redundant comment.
[deliverable/binutils-gdb.git] / gas / Makefile.am
CommitLineData
252b5132
RH
1## Process this file with automake to generate Makefile.in
2
a5c7551f 3AUTOMAKE_OPTIONS = 1.11 dejagnu foreign no-dist
79887925 4ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
252b5132
RH
5
6SUBDIRS = doc po
7
8tooldir = $(exec_prefix)/$(target_alias)
9
9c46fb1b
AM
10YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi`
11LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi`
252b5132 12
a15af8e2
RW
13# Automake 1.10+ disables lex and yacc output file regeneration if
14# maintainer mode is disabled. Avoid this.
15am__skiplex =
16am__skipyacc =
17
a2d91340 18WARN_CFLAGS = @WARN_CFLAGS@
9e9b66a9 19NO_WERROR = @NO_WERROR@
a2d91340
AC
20AM_CFLAGS = $(WARN_CFLAGS)
21
252b5132
RH
22TARG_CPU = @target_cpu_type@
23TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c
24TARG_CPU_O = tc-@target_cpu_type@.o
25TARG_CPU_H = $(srcdir)/config/tc-@target_cpu_type@.h
26OBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
27OBJ_FORMAT_O = obj-@obj_format@.o
28OBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
29TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
30ATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
31ATOF_TARG_O = atof-@atof@.o
32
33# use @target_cpu_type@ for refering to configured target name
12e64c2c 34IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h
252b5132
RH
35IT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c
36IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
37IT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o
38
39# CPU types. This is only used for dependency information.
40
41CPU_TYPES = \
252b5132
RH
42 alpha \
43 arc \
44 arm \
ec694b89 45 avr \
07c1b327 46 bfin \
3d3d428f 47 cr16 \
3bcbcc3d 48 cris \
1fe1f39c 49 crx \
252b5132
RH
50 d10v \
51 d30v \
d172d4ba 52 dlx \
252b5132 53 fr30 \
0ebb9a87 54 frv \
252b5132 55 h8300 \
252b5132 56 hppa \
5b93d8bb 57 i370 \
252b5132
RH
58 i386 \
59 i860 \
60 i960 \
f26a5955 61 ia64 \
a40cbfa3 62 ip2k \
84e94c90 63 lm32 \
49f58d10 64 m32c \
252b5132 65 m32r \
60bcf0fa 66 m68hc11 \
252b5132 67 m68k \
f26a5955 68 maxq \
252b5132 69 mcore \
280d71bf 70 mep \
7ba29e2a 71 microblaze \
252b5132 72 mips \
3c3bdf30 73 mmix \
252b5132
RH
74 mn10200 \
75 mn10300 \
2469cfa2 76 msp430 \
f26a5955 77 mt \
252b5132 78 ns32k \
c7e40348 79 openrisc \
3b16e843 80 or32 \
e135f41b 81 pdp11 \
041dd5a9 82 pj \
252b5132 83 ppc \
a85d7ed0 84 s390 \
1c0d3aa6 85 score \
252b5132 86 sh \
eb1e0e80 87 sh64 \
252b5132 88 sparc \
e9f53129 89 spu \
252b5132 90 tic30 \
98199d8f 91 tic4x \
39bec121 92 tic54x \
252b5132 93 v850 \
f26a5955 94 vax \
d70c5fc7 95 xc16x \
f26a5955 96 xstormy16 \
e0001a05 97 xtensa \
3c9b82ba 98 z80 \
252b5132
RH
99 z8k
100
101# Object format types. This is only used for dependency information.
98aa84af 102# We deliberately omit SOM, since it does not work as a cross assembler.
252b5132
RH
103
104OBJ_FORMATS = \
105 aout \
252b5132
RH
106 coff \
107 ecoff \
108 elf \
e57f8c65
TG
109 evax \
110 macho
252b5132
RH
111
112# This is an sh case which sets valid according to whether the CPU
113# type in the shell variable c and the OS type in the shell variable o
114# are supported. This helps cuts down on the amount of dependency
115# information.
116
117CPU_OBJ_VALID = \
118 valid= ; \
119 case $$o in \
120 aout) \
121 case $$c in \
7be1c489 122 arm | cris | i386 | m68k | ns32k | pdp11 | sparc | tic30 | vax) \
252b5132
RH
123 valid=yes ;; \
124 esac ;; \
f26a5955 125 coff) \
43c34dee 126 case $$c in \
f26a5955
AM
127 arm | h8300 | i386 | i960 | m68k | maxq | mcore | mips | or32 \
128 | ppc | sh | sparc | tic* | xscale | z80 | z8k) \
129 valid=yes ;; \
43c34dee 130 esac ;; \
252b5132
RH
131 ecoff) \
132 case $$c in \
133 mips | alpha) valid=yes ;; \
134 esac ;; \
f26a5955
AM
135 elf) valid=yes ; \
136 case $$c in \
137 maxq | ns32k | tic* | z80 | z8k) valid= ;; \
138 esac ;; \
252b5132
RH
139 evax) \
140 case $$c in \
141 alpha) valid=yes ;; \
142 esac ;; \
e57f8c65
TG
143 macho) \
144 case $$c in \
145 i386) valid=yes ;; \
146 esac ;; \
252b5132
RH
147 vms) \
148 case $$c in \
149 vax) valid=yes ;; \
150 esac ;; \
151 esac;
152
16adf844 153# These are like CPU_TYPES and CPU_OBJ_VALID, for the obj=multi case.
252b5132 154
3bcbcc3d 155MULTI_CPU_TYPES = i386 mips cris
16adf844
AM
156
157MULTI_CPU_OBJ_VALID = \
252b5132 158 valid= ; \
16adf844
AM
159 case $$o in \
160 aout) \
161 case $$c in \
3bcbcc3d
HPN
162 i386 | cris) valid=yes ;; \
163 esac ;; \
164 coff) \
165 case $$c in \
166 i386 | mips) valid=yes ;; \
16adf844 167 esac ;; \
16adf844
AM
168 ecoff) \
169 case $$c in \
170 mips) valid=yes ;; \
171 esac ;; \
172 elf) valid=yes ;; \
252b5132
RH
173 esac;
174
175# Regular source files.
176
177GAS_CFILES = \
178 app.c \
179 as.c \
180 atof-generic.c \
252b5132
RH
181 cond.c \
182 depend.c \
fac0d250 183 dwarf2dbg.c \
54cfded0 184 dw2gencfi.c \
252b5132
RH
185 ecoff.c \
186 ehopt.c \
187 expr.c \
188 flonum-copy.c \
189 flonum-konst.c \
190 flonum-mult.c \
191 frags.c \
192 hash.c \
193 input-file.c \
194 input-scrub.c \
195 listing.c \
196 literal.c \
197 macro.c \
198 messages.c \
199 output-file.c \
200 read.c \
3d6b762c 201 remap.c \
252b5132
RH
202 sb.c \
203 stabs.c \
204 subsegs.c \
205 symbols.c \
206 write.c
207
bd3ba5d1 208CFILES = $(GAS_CFILES) itbl-ops.c cgen.c
252b5132
RH
209
210HFILES = \
211 as.h \
212 asintl.h \
213 bignum.h \
214 bit_fix.h \
215 cgen.h \
fac0d250 216 dwarf2dbg.h \
54cfded0 217 dw2gencfi.h \
252b5132
RH
218 ecoff.h \
219 emul-target.h \
220 emul.h \
221 expr.h \
222 flonum.h \
223 frags.h \
224 hash.h \
225 input-file.h \
b16b813f 226 itbl-lex.h \
252b5132
RH
227 itbl-ops.h \
228 listing.h \
229 macro.h \
230 obj.h \
231 output-file.h \
232 read.h \
233 sb.h \
234 struc-symbol.h \
235 subsegs.h \
236 symbols.h \
237 tc.h \
238 write.h
239
240# CPU files in config.
241
242TARGET_CPU_CFILES = \
252b5132
RH
243 config/tc-alpha.c \
244 config/tc-arc.c \
245 config/tc-arm.c \
ec694b89 246 config/tc-avr.c \
07c1b327 247 config/tc-bfin.c \
3d3d428f 248 config/tc-cr16.c \
3bcbcc3d 249 config/tc-cris.c \
1fe1f39c 250 config/tc-crx.c \
252b5132
RH
251 config/tc-d10v.c \
252 config/tc-d30v.c \
d172d4ba 253 config/tc-dlx.c \
a4835b42 254 config/tc-fr30.c \
0ebb9a87 255 config/tc-frv.c \
252b5132 256 config/tc-h8300.c \
252b5132 257 config/tc-hppa.c \
800eeca4 258 config/tc-ia64.c \
5b93d8bb 259 config/tc-i370.c \
252b5132
RH
260 config/tc-i386.c \
261 config/tc-i860.c \
262 config/tc-i960.c \
a40cbfa3 263 config/tc-ip2k.c \
bd3ba5d1 264 config/tc-iq2000.c \
84e94c90 265 config/tc-lm32.c \
49f58d10 266 config/tc-m32c.c \
252b5132 267 config/tc-m32r.c \
60bcf0fa 268 config/tc-m68hc11.c \
252b5132 269 config/tc-m68k.c \
bd3ba5d1 270 config/tc-maxq.c \
252b5132 271 config/tc-mcore.c \
280d71bf 272 config/tc-mep.c \
7ba29e2a 273 config/tc-microblaze.c \
252b5132 274 config/tc-mips.c \
3c3bdf30 275 config/tc-mmix.c \
252b5132
RH
276 config/tc-mn10200.c \
277 config/tc-mn10300.c \
2cbd2211 278 config/tc-moxie.c \
2469cfa2 279 config/tc-msp430.c \
bd3ba5d1 280 config/tc-mt.c \
252b5132 281 config/tc-ns32k.c \
c7e40348 282 config/tc-openrisc.c \
3b16e843 283 config/tc-or32.c \
e135f41b 284 config/tc-pdp11.c \
041dd5a9 285 config/tc-pj.c \
252b5132 286 config/tc-ppc.c \
a85d7ed0 287 config/tc-s390.c \
1c0d3aa6 288 config/tc-score.c \
252b5132 289 config/tc-sh.c \
324bfcf3 290 config/tc-sh64.c \
252b5132 291 config/tc-sparc.c \
e9f53129 292 config/tc-spu.c \
252b5132 293 config/tc-tic30.c \
bd3ba5d1 294 config/tc-tic4x.c \
39bec121 295 config/tc-tic54x.c \
252b5132 296 config/tc-vax.c \
252b5132 297 config/tc-v850.c \
93fbbb04 298 config/tc-xstormy16.c \
d70c5fc7 299 config/tc-xc16x.c \
e0001a05 300 config/tc-xtensa.c \
3c9b82ba 301 config/tc-z80.c \
bd3ba5d1
NC
302 config/tc-z8k.c \
303 config/xtensa-relax.c
252b5132
RH
304
305TARGET_CPU_HFILES = \
252b5132
RH
306 config/tc-alpha.h \
307 config/tc-arc.h \
308 config/tc-arm.h \
ec694b89 309 config/tc-avr.h \
07c1b327 310 config/tc-bfin.h \
3d3d428f 311 config/tc-cr16.h \
3bcbcc3d 312 config/tc-cris.h \
1fe1f39c 313 config/tc-crx.h \
252b5132
RH
314 config/tc-d10v.h \
315 config/tc-d30v.h \
d172d4ba 316 config/tc-dlx.h \
a4835b42 317 config/tc-fr30.h \
0ebb9a87 318 config/tc-frv.h \
252b5132 319 config/tc-h8300.h \
252b5132 320 config/tc-hppa.h \
800eeca4 321 config/tc-ia64.h \
5b93d8bb 322 config/tc-i370.h \
252b5132
RH
323 config/tc-i386.h \
324 config/tc-i860.h \
325 config/tc-i960.h \
a40cbfa3 326 config/tc-ip2k.h \
bd3ba5d1 327 config/tc-iq2000.h \
84e94c90 328 config/tc-lm32.h \
49f58d10 329 config/tc-m32c.h \
252b5132 330 config/tc-m32r.h \
60bcf0fa 331 config/tc-m68hc11.h \
252b5132 332 config/tc-m68k.h \
bd3ba5d1 333 config/tc-maxq.h \
252b5132 334 config/tc-mcore.h \
280d71bf 335 config/tc-mep.h \
7ba29e2a 336 config/tc-microblaze.h \
252b5132 337 config/tc-mips.h \
3c3bdf30 338 config/tc-mmix.h \
252b5132
RH
339 config/tc-mn10200.h \
340 config/tc-mn10300.h \
2469cfa2 341 config/tc-msp430.h \
bd3ba5d1 342 config/tc-mt.h \
252b5132 343 config/tc-ns32k.h \
c7e40348 344 config/tc-openrisc.h \
3b16e843 345 config/tc-or32.h \
e135f41b 346 config/tc-pdp11.h \
041dd5a9 347 config/tc-pj.h \
252b5132 348 config/tc-ppc.h \
a85d7ed0 349 config/tc-s390.h \
1c0d3aa6 350 config/tc-score.h \
252b5132 351 config/tc-sh.h \
324bfcf3 352 config/tc-sh64.h \
252b5132 353 config/tc-sparc.h \
e9f53129 354 config/tc-spu.h \
252b5132 355 config/tc-tic30.h \
bd3ba5d1 356 config/tc-tic4x.h \
39bec121 357 config/tc-tic54x.h \
252b5132 358 config/tc-vax.h \
252b5132 359 config/tc-v850.h \
93fbbb04 360 config/tc-xstormy16.h \
d70c5fc7 361 config/tc-xc16x.h \
e0001a05 362 config/tc-xtensa.h \
3c9b82ba 363 config/tc-z80.h \
bd3ba5d1
NC
364 config/tc-z8k.h \
365 config/xtensa-relax.h
252b5132
RH
366
367# OBJ files in config
368
369OBJ_FORMAT_CFILES = \
370 config/obj-aout.c \
252b5132
RH
371 config/obj-coff.c \
372 config/obj-ecoff.c \
373 config/obj-elf.c \
374 config/obj-evax.c \
fe4fa32c 375 config/obj-fdpicelf.c \
e57f8c65 376 config/obj-macho.c \
a5c7551f 377 config/obj-multi.c \
ec91a2c2 378 config/obj-som.c
252b5132
RH
379
380OBJ_FORMAT_HFILES = \
381 config/obj-aout.h \
252b5132
RH
382 config/obj-coff.h \
383 config/obj-ecoff.h \
384 config/obj-elf.h \
385 config/obj-evax.h \
fe4fa32c 386 config/obj-fdpicelf.h \
e57f8c65 387 config/obj-macho.h \
a5c7551f 388 config/obj-multi.h \
ec91a2c2 389 config/obj-som.h
252b5132
RH
390
391# Emulation header files in config
392
393TARG_ENV_HFILES = \
394 config/te-386bsd.h \
bd3ba5d1
NC
395 config/te-aix5.h \
396 config/te-armeabi.h \
c820d418 397 config/te-armlinuxeabi.h \
252b5132 398 config/te-dynix.h \
a4835b42 399 config/te-epoc-pe.h \
bd3ba5d1 400 config/te-freebsd.h \
252b5132 401 config/te-generic.h \
bd3ba5d1 402 config/te-gnu.h \
252b5132 403 config/te-go32.h \
252b5132 404 config/te-hppa.h \
3438adb3
AM
405 config/te-hppa64.h \
406 config/te-hppalinux64.h \
252b5132 407 config/te-i386aix.h \
7463c317 408 config/te-ia64aix.h \
bd3ba5d1 409 config/te-interix.h \
252b5132
RH
410 config/te-lnews.h \
411 config/te-lynx.h \
412 config/te-mach.h \
413 config/te-macos.h \
252b5132
RH
414 config/te-nbsd.h \
415 config/te-nbsd532.h \
32137342 416 config/te-netware.h \
252b5132
RH
417 config/te-pc532mach.h \
418 config/te-pe.h \
252b5132
RH
419 config/te-psos.h \
420 config/te-riscix.h \
2774199c 421 config/te-solaris.h \
252b5132
RH
422 config/te-sparcaout.h \
423 config/te-sun3.h \
424 config/te-svr4.h \
e5a52504 425 config/te-symbian.h \
7148cc28 426 config/te-tmips.h \
bd3ba5d1 427 config/te-vxworks.h \
7148cc28 428 config/te-wince-pe.h
252b5132
RH
429
430# Multi files in config
431
432MULTI_CFILES = \
3bcbcc3d
HPN
433 config/e-crisaout.c \
434 config/e-criself.c \
4c63da97 435 config/e-i386aout.c \
252b5132
RH
436 config/e-i386coff.c \
437 config/e-i386elf.c \
438 config/e-mipsecoff.c \
439 config/e-mipself.c
440
441CONFIG_OBJS = \
442 $(TARG_CPU_O) \
443 $(OBJ_FORMAT_O) \
444 $(ATOF_TARG_O) \
445 $(extra_objects)
446
447GENERIC_OBJS = \
448 app.o \
449 as.o \
450 atof-generic.o \
252b5132
RH
451 cond.o \
452 depend.o \
fac0d250 453 dwarf2dbg.o \
54cfded0 454 dw2gencfi.o \
252b5132
RH
455 ehopt.o \
456 expr.o \
457 flonum-konst.o \
458 flonum-copy.o \
459 flonum-mult.o \
460 frags.o \
461 hash.o \
462 input-file.o \
463 input-scrub.o \
464 literal.o \
465 messages.o \
466 output-file.o \
467 read.o \
3d6b762c 468 remap.o \
252b5132
RH
469 subsegs.o \
470 symbols.o \
471 write.o \
472 listing.o \
473 ecoff.o \
474 stabs.o \
475 sb.o \
476 macro.o
477
bd3ba5d1
NC
478CONFIG_ATOF_CFILES = \
479 config/atof-ieee.c \
480 config/atof-vax.c
481
252b5132
RH
482OBJS = $(CONFIG_OBJS) $(GENERIC_OBJS)
483
bd3ba5d1 484POTFILES = $(MULTI_CFILES) $(CONFIG_ATOF_CFILES) $(TARG_ENV_HFILES) $(OBJ_FORMAT_HFILES) \
252b5132 485 $(OBJ_FORMAT_CFILES) $(TARGET_CPU_HFILES) $(TARGET_CPU_CFILES) \
620c54b3 486 $(HFILES) $(CFILES)
252b5132 487po/POTFILES.in: @MAINT@ Makefile
323ee3f4 488 for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
252b5132
RH
489 && mv tmp $(srcdir)/po/POTFILES.in
490
fea17916
NC
491# Note: GASP is now deprecated and has been removed. It is still
492# available in the CVS archive or older binutils releases if it is needed.
3f965e60 493noinst_PROGRAMS = as-new
81afc846
ILT
494noinst_SCRIPTS = $(GDBINIT)
495EXTRA_SCRIPTS = .gdbinit
252b5132 496
07c1b327 497EXTRA_DIST = m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c \
9ba4c445 498 bfin-parse.c bfin-parse.h bfin-lex.c
07c1b327 499
c45021f2 500diststuff: $(EXTRA_DIST) info
252b5132
RH
501
502DISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-desc.h
503
504# Now figure out from those variables how to compile and link.
505
506BASEDIR = $(srcdir)/..
507BFDDIR = $(BASEDIR)/bfd
508INCDIR = $(BASEDIR)/include
509
510# This is the variable actually used when we compile.
511# Specify the directories to be searched for header files.
512# Both . and srcdir are used, in that order,
513# so that tm.h and config.h will be found in the compilation
514# subdirectory rather than in the source directory.
14ec8efd 515AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config \
92f01d61 516 -I$(INCDIR) -I$(srcdir)/.. -I$(BFDDIR) @INCINTL@ \
92f01d61 517 -DLOCALEDIR="\"$(datadir)/locale\""
252b5132 518
252b5132
RH
519# How to link with both our special library facilities
520# and the system's installed libraries.
521
03bf704f 522GASLIBS = @OPCODES_LIB@ ../bfd/libbfd.la ../libiberty/libiberty.a
252b5132
RH
523
524# Files to be copied away after each stage in building.
525STAGESTUFF = *.o $(noinst_PROGRAMS)
526
252b5132
RH
527as_new_SOURCES = $(GAS_CFILES)
528as_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
20e95c23 529 $(extra_objects) $(GASLIBS) $(LIBINTL) $(LIBM)
252b5132 530as_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
20e95c23 531 $(extra_objects) $(GASLIBS) $(LIBINTL_DEP)
a5c7551f
RW
532EXTRA_as_new_SOURCES = $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \
533 $(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES) \
534 $(CONFIG_ATOF_CFILES) $(MULTI_CFILES)
252b5132 535
c3298874
BE
536EXPECT = expect
537RUNTEST = runtest
252b5132
RH
538RUNTESTFLAGS=
539
540check-DEJAGNU: site.exp
541 if [ -d testsuite ]; then \
542 true; \
543 else \
544 mkdir testsuite; \
545 fi
546 rm -f testsuite/site.exp
547 cp site.exp testsuite/site.exp
548 rootme=`pwd`; export rootme; \
549 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
550 EXPECT=${EXPECT} ; export EXPECT ; \
252b5132
RH
551 runtest=$(RUNTEST); \
552 cd testsuite; \
553 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
554 $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
555 $(RUNTESTFLAGS); \
556 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
557 fi
558
252b5132
RH
559# The m68k operand parser.
560
a5c7551f 561EXTRA_as_new_SOURCES += config/m68k-parse.y config/bfin-parse.y
252b5132
RH
562
563# If m68k-parse.y is in a different directory, then ylwrap will use an
564# absolute path when it invokes yacc, which will cause yacc to put the
565# absolute path into the generated file. That's a pain when it comes
566# to generating snapshots, because it introduces spurious diffs.
567# Since when we make the snapshots $(srcdir) = ".", we check for that
568# case and handle it differently. This means that anybody who
569# configures with $(srcdir) = "." will have to set their path in the
570# debugger if they want to debug m68k-parse.y. This is bad, but on
571# the other hand it's good that people who use the prebuilt
572# m68k-parse.c don't get a spurious absolute path.
573m68k-parse.c: $(srcdir)/config/m68k-parse.y
574 f=$(srcdir)/config/m68k-parse.y; \
575 if [ $$f = "./config/m68k-parse.y" ]; then \
576 ln -s config/m68k-parse.y . > /dev/null 2>/dev/null || \
577 ln config/m68k-parse.y . > /dev/null 2>/dev/null || \
578 cp config/m68k-parse.y . >/dev/null 2>/dev/null; \
579 f=m68k-parse.y; \
580 else true; fi; \
42ecbf5e 581 $(SHELL) $(YLWRAP) $$f y.tab.c m68k-parse.c -- $(YACCCOMPILE); \
252b5132
RH
582 if [ $$f = "m68k-parse.y" ]; then \
583 rm -f m68k-parse.y; \
584 else true; fi
1a66a017 585# Disable -Werror, if it has been enabled, since old versions of bison/
12e64c2c 586# yacc will produce working code which contain compile time warnings.
a5c7551f
RW
587m68k-parse.o: m68k-parse.c
588if am__fastdepCC
589 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ m68k-parse.c $(NO_WERROR)
590 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
591else
592if AMDEP
593 source='m68k-parse.c' object='$@' libtool=no @AMDEPBACKSLASH@
594 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
595endif
596 $(COMPILE) -c m68k-parse.c $(NO_WERROR)
597endif
252b5132
RH
598
599# Don't let the .y.h rule clobber m68k-parse.h.
600m68k-parse.h: ; @true
601$(srcdir)/config/m68k-parse.h: ; @true
602
7c8d43d8 603bfin-parse.c: $(srcdir)/config/bfin-parse.y
9ba4c445 604 $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-parse.y y.tab.c bfin-parse.c y.tab.h bfin-parse.h -- $(YACCCOMPILE) -d ;
7c8d43d8 605bfin-parse.h: bfin-parse.c
1ac4baed
BS
606bfin-parse.o: bfin-parse.c bfin-parse.h $(srcdir)/config/bfin-defs.h \
607 $(INCDIR)/elf/common.h $(INCDIR)/elf/bfin.h $(BFDDIR)/libbfd.h
07c1b327
CM
608
609bfin-defs.h: ; @true
610$(srcdir)/config/bfin-defs.h: ; @true
611
612bfin-lex.c: $(srcdir)/config/bfin-lex.l
1e0486ea 613 $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-lex.l lex.yy.c bfin-lex.c -- $(LEXCOMPILE)
a5c7551f
RW
614bfin-lex.o: bfin-lex.c
615if am__fastdepCC
616 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ bfin-lex.c $(NO_WERROR)
617 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
618else
619if AMDEP
620 source='bfin-lex.c' object='$@' libtool=no @AMDEPBACKSLASH@
621 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
622endif
623 $(COMPILE) -c bfin-lex.c $(NO_WERROR)
624endif
07c1b327 625
252b5132
RH
626# The instruction table specification lexical analyzer and parser.
627
0876dd7e 628# Disable -Werror, if it has been enabled, since old versions of bison/
12e64c2c 629# yacc will produce working code which contain compile time warnings.
a5c7551f
RW
630itbl-lex.o: itbl-lex.c
631if am__fastdepCC
632 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ itbl-lex.c $(NO_WERROR)
633 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
634else
635if AMDEP
636 source='itbl-lex.c' object='$@' libtool=no @AMDEPBACKSLASH@
637 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
638endif
639 $(COMPILE) -c itbl-lex.c $(NO_WERROR)
640endif
252b5132 641
1a66a017 642# Disable -Werror, if it has been enabled, since old versions of bison/
12e64c2c 643# yacc will produce working code which contain compile time warnings.
a5c7551f
RW
644itbl-parse.o: itbl-parse.c
645if am__fastdepCC
646 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ itbl-parse.c $(NO_WERROR)
647 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
648else
649if AMDEP
650 source='itbl-parse.c' object='$@' libtool=no @AMDEPBACKSLASH@
651 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
652endif
653 $(COMPILE) -c itbl-parse.c $(NO_WERROR)
654endif
252b5132
RH
655
656itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
42ecbf5e 657 $(SHELL) $(YLWRAP) $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- $(YACCCOMPILE) -d
252b5132
RH
658
659# stand-alone itbl assembler & disassembler
660
fea17916 661EXTRA_PROGRAMS = itbl-test
252b5132 662itbl_test_SOURCES = itbl-parse.y itbl-lex.l
46eec08e 663itbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@
252b5132 664
a5c7551f
RW
665itbl-tops.o: itbl-ops.c
666if am__fastdepCC
667 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -o $@ -c -DSTAND_ALONE $(srcdir)/itbl-ops.c
668 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
669else
670if AMDEP
671 source='itbl-ops.c' object='$@' libtool=no @AMDEPBACKSLASH@
672 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
673endif
674 $(COMPILE) -o $@ -DSTAND_ALONE -c $(srcdir)/itbl-ops.c
675endif
676
677itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c
678if am__fastdepCC
679 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
680 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
681else
682if AMDEP
683 source='itbl-test.c' object='$@' libtool=no @AMDEPBACKSLASH@
684 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
685endif
252b5132 686 $(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
a5c7551f 687endif
252b5132
RH
688
689# CGEN interface.
690
691CGEN_CPU_PREFIX = @cgen_cpu_prefix@
692
693cgen.o: cgen.c cgen.h cgen-desc.h subsegs.h \
694 $(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \
695 $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \
696 $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h
697
698# Remake the info files.
699
e079bef8 700MOSTLYCLEANFILES = $(STAGESTUFF) core \
252b5132
RH
701 testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \
702 testsuite/site.exp site.bak site.exp stage stage1 stage2
703
252b5132
RH
704.PHONY: install-exec-local install-data-local
705.PHONY: install-exec-bindir install-exec-tooldir
706
707install-exec-local: install-exec-bindir @install_tooldir@
708
709install-exec-bindir: $(noinst_PROGRAMS)
d3d8a9ee 710 $(mkinstalldirs) $(DESTDIR)$(bindir)
252b5132
RH
711 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
712 if test -f $$p; then \
713 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
d3d8a9ee 714 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
252b5132
RH
715 else :; fi; \
716 done
717
f8c827e9 718install-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS)
d3d8a9ee 719 $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
252b5132
RH
720 n=`echo as | sed '$(transform)'`; \
721 if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
d3d8a9ee
NC
722 rm -f $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
723 ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
724 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
252b5132
RH
725 else \
726 true ; \
727 fi
728
729# These exist for maintenance purposes.
730
731.PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison
732
733bootstrap: as-new
734 $(MAKE) stage1
735 rm -f stage && ln -s stage1 stage
736 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
737 $(MAKE) stage2
738 rm -f stage && ln -s stage2 stage
739 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
740 $(MAKE) comparison against=stage2
741
742bootstrap2:
743 rm -f stage && ln -s stage1 stage
744 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
745 $(MAKE) stage2
746 rm -f stage && ln -s stage2 stage
747 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
748 $(MAKE) comparison against=stage2
749
750bootstrap3:
751 rm -f stage && ln -s stage2 stage
752 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
753 $(MAKE) comparison against=stage2
754
755# Copy the object files from a particular stage into a subdirectory.
756stage1:
757 -mkdir stage1
758 -mv $(STAGESTUFF) stage1
759 if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
760
761stage2:
762 -mkdir stage2
763 -mv $(STAGESTUFF) stage2
764 if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
765
766stage3:
767 -mkdir stage3
768 -mv $(STAGESTUFF) stage3
769 if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi
770
771against=stage2
772
773# This rule is derived from corresponding code in the Makefile.in for gcc.
774# The "tail +16c" is to bypass headers which may include timestamps or
775# temporary assembly file names.
776comparison:
777 x=0 ; \
778 for file in *.o ; do \
779 tail +16c ./$$file > tmp-foo1; \
780 if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
781 if cmp tmp-foo1 tmp-foo2 ; then \
782 true ; \
783 else \
784 echo $$file differs ; \
785 x=1 ; \
786 fi ; \
787 else true; fi ; \
788 done ; \
789 exit $$x
790 -rm -f tmp-foo*
791
792.PHONY: de-stage1 de-stage2 de-stage3
793
794de-stage1:
795 - (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..)
796 - rmdir stage1
797
798de-stage2:
799 - (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..)
800 - rmdir stage2
801
802de-stage3:
803 - (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..)
804 - rmdir stage3
805
14ee9f48 806CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in $(srcdir)/configure.tgt
This page took 0.928335 seconds and 4 git commands to generate.