old-cross-binutils/gdb/testsuite/gdb.disasm/hppa.mt
Jim Kingdon 958f6a1310 * gdb.disasm/hppa.mt (hppa), gdb.stabs/hppa.mt (weird.o): Check
for HP assembler versus GNU assembler based on actual behavior of
	$(CC), rather than assuming that $(AS) is always the GNU assembler.
1995-01-27 04:24:09 +00:00

14 lines
334 B
Mathematica

EXECUTABLES = hppa
hppa: hppa.s
if $(CC) -c $(srcdir)/hppa.s 2>errs; then \
$(CC) $(CFLAGS) $(LDFLAGS) -o hppa hppa.o $(LIBS); \
true; \
else \
if grep 'Opcode not defined - DIAG' errs \
>/dev/null; then \
echo HP assembler in use--skipping disasm tests; true; \
else \
cat errs; false; \
fi; \
fi