[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / nm

File: [local] / src / usr.bin / nm / Makefile (download)

Revision 1.5, Mon Jan 5 01:27:22 2004 UTC (20 years, 5 months ago) by mickey
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.4: +3 -1 lines

nm digs elf and merges w/ size; millert@ ok

#	$OpenBSD: Makefile,v 1.5 2004/01/05 01:27:22 mickey Exp $

TARGET_MACHINE_ARCH?=	${MACHINE_ARCH}

.if ${TARGET_MACHINE_ARCH} != ${MACHINE_ARCH}
# XXX should make this automatic
.if ${TARGET_MACHINE_ARCH} == "i386"
CFLAGS+=	-DMID_MACHINE_OVERRIDE=MID_I386
.elif ${TARGET_MACHINE_ARCH} == "m68k"
CFLAGS+=	-DMID_MACHINE_OVERRIDE=MID_M68K
.elif ${TARGET_MACHINE_ARCH} == "ns32k"
CFLAGS+=	-DMID_MACHINE_OVERRIDE=MID_NS32K
.elif ${TARGET_MACHINE_ARCH} == "sparc"
CFLAGS+=	-DMID_MACHINE_OVERRIDE=MID_SPARC
.elif ${TARGET_MACHINE_ARCH} == "vax"
CFLAGS+=	-DMID_MACHINE_OVERRIDE=MID_VAX
.endif
.endif

PROG=	nm
LINKS=	${BINDIR}/nm ${BINDIR}/size
MAN=	nm.1 size.1

.include <bsd.prog.mk>