Home | History | Annotate | Line # | Download | only in elf2aout
Makefile revision 1.11
      1 #	$NetBSD: Makefile,v 1.11 2016/03/06 16:13:21 christos Exp $
      2 #	from: @(#)Makefile	5.4 (Berkeley) 5/11/90
      3 
      4 .include <bsd.own.mk>	# for MACHINE_CPU
      5 WARNS=6
      6 
      7 # Build ELF to {ecoff, aout} tools on m68k/powerpc, for kernels with old amigappc bootblocks.
      8 .if (${MACHINE_CPU} == "m68k" || \
      9      ${MACHINE_ARCH} == "powerpc" || \
     10      ${MACHINE_ARCH} == "powerpc64")
     11 PROG=	elf2aout
     12 .endif
     13 
     14 MAN=	elf2aout.1
     15 
     16 .include <bsd.prog.mk>
     17