fix install target of makefile

This commit is contained in:
Jeremy Baxter 2024-02-13 09:50:50 +13:00
parent 8b392c5bab
commit 566ec45337

8
configure vendored
View file

@ -31,10 +31,10 @@ esv: ${OBJS}
clean:
rm -f esv ${OBJS} ${INIOBJS}
install: esv
install -m755 esv ${DESTDIR}${PREFIX}/bin/esv
cp -f esv.1 ${DESTDIR}${MANPREFIX}/man1
cp -f esv.conf.5 ${DESTDIR}${MANPREFIX}/man5
install:
install -Dm755 esv ${DESTDIR}${PREFIX}/bin/esv
install -Dm644 esv.1 ${DESTDIR}${MANPREFIX}/man1/esv.1
install -Dm644 esv.conf.5 ${DESTDIR}${MANPREFIX}/man5/esv.conf.5
.PHONY: all clean install
'