aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 8a82ce388944335beb1367320b89c2d67de48116 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.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