xref: /netbsd-src/usr.bin/lorder/Makefile (revision 81b108b45f75f89f1e3ffad9fb6f074e771c0935)
1#	$NetBSD: Makefile,v 1.9 1995/12/18 07:59:12 jonathan Exp $
2#	@(#)Makefile	8.1 (Berkeley) 6/6/93
3
4MAN=	lorder.1
5
6.if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "mips")
7# alpha, mips use special version which works with GNU (or BSD) nm.
8SCRIPT=	lorder.sh.gnm
9.else
10SCRIPT=	lorder.sh
11.endif
12
13realinstall:
14	install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
15	    ${.CURDIR}/${SCRIPT} ${DESTDIR}${BINDIR}/lorder
16
17.include <bsd.prog.mk>
18