1 2 3 4 5 6 7 8 9 10 11 12 13 14
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