fd89278a5f
handling, and types.
17 lines
424 B
Makefile
17 lines
424 B
Makefile
# $NetBSD: Makefile,v 1.11 2016/03/06 16:13:21 christos Exp $
|
|
# from: @(#)Makefile 5.4 (Berkeley) 5/11/90
|
|
|
|
.include <bsd.own.mk> # for MACHINE_CPU
|
|
WARNS=6
|
|
|
|
# Build ELF to {ecoff, aout} tools on m68k/powerpc, for kernels with old amigappc bootblocks.
|
|
.if (${MACHINE_CPU} == "m68k" || \
|
|
${MACHINE_ARCH} == "powerpc" || \
|
|
${MACHINE_ARCH} == "powerpc64")
|
|
PROG= elf2aout
|
|
.endif
|
|
|
|
MAN= elf2aout.1
|
|
|
|
.include <bsd.prog.mk>
|