blob: 8a82ce388944335beb1367320b89c2d67de48116 (
plain) (
tree)
|
|
.POSIX:
target = mkpass
PREFIX = /usr/local
DPREFIX = ${DESTDIR}${PREFIX}
all: ${target}
${target}:
chmod +x $@
install:
mkdir -p ${DPREFIX}/bin ${DPREFIX}/man/man1
cp ${target} ${DPREFIX}/bin
cp ${target}.1 ${DPREFIX}/man/man1
|