From e992e6906ae8b66540187a2c7f5d514a9bc7224d Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sat, 23 Sep 2023 04:11:18 +0400 Subject: [PATCH] In Makefile un-/install targets added a LICENSE file, but commented out. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f68e7a8..ca70318 100755 --- a/Makefile +++ b/Makefile @@ -26,10 +26,12 @@ run: install: install -Dm 0755 bin/${TARGET} ${DESTDIR}${PREFIX}/bin/${TARGET} install -Dm 0644 init/systemd.service ${DESTDIR}${SYSDDIR}/${TARGET}.service +# install -Dm 0644 LICENSE ${DESTDIR}/usr/share/licenses/${TARGET}/LICENSE uninstall: rm ${DESTDIR}${PREFIX}/bin/${TARGET} rm ${DESTDIR}${SYSDDIR}/${TARGET}.service +# rm ${DESTDIR}/usr/share/licenses/${TARGET}/LICENSE clean: rm -f bin/${TARGET}