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

Annotation of src/usr.bin/lorder/Makefile, Revision 1.7

1.7     ! deraadt     1: #      $OpenBSD: Makefile,v 1.6 1997/04/27 20:56:48 millert Exp $
1.1       deraadt     2:
                      3: MAN=   lorder.1
                      4:
1.5       rahnds      5: .if (${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "mips" \
                      6:        || ${MACHINE_ARCH} == "powerpc" )
1.2       deraadt     7: # alpha, mips use special version which works with GNU (or BSD) nm.
                      8: SCRIPT=        lorder.sh.gnm
                      9: .else
1.1       deraadt    10: SCRIPT=        lorder.sh
                     11: .endif
                     12:
                     13: realinstall:
1.6       millert    14:        ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
1.1       deraadt    15:            ${.CURDIR}/${SCRIPT} ${DESTDIR}${BINDIR}/lorder
                     16:
                     17: .include <bsd.prog.mk>