1 # $NetBSD: Makefile,v 1.10.46.2 2009/09/05 03:48:22 matt Exp $ 2 # from: @(#)Makefile 5.4 (Berkeley) 5/11/90 3 4 .include <bsd.own.mk> 5 6 # Build ELF to {ecoff, aout} tools on mips, for old bootblocks/PROMs. 7 .if (${MACHINE_ARCH} == "mipsel" || ${MACHINE_ARCH} == "mipseb" || \ 8 ((${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "mips64eb") && \ 9 ${CPUFLAGS:M-mabi=64} == "")) 10 11 PROG= elf2ecoff 12 13 .endif 14 15 MAN= elf2ecoff.1 16 17 .include <bsd.prog.mk> 18