From 3411a6242ba6bc2217a5f3822d474384237a9569 Mon Sep 17 00:00:00 2001 From: Nicholas Bishop Date: Sat, 24 Oct 2015 15:06:08 -0400 Subject: Add icon --- Makefile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 9cb818c..06fab1d 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,14 @@ +PREFIX=/usr +BINDIR=${PREFIX}/bin +ICODIR=${PREFIX}/share/icons/hicolor/256x256/apps +APPDIR=${PREFIX}/share/applications + install: - install xsft.py /usr/local/bin - install xrandr-slightly-fewer-tears.desktop /usr/local/share/applications + install -Dv xsft.py ${BINDIR} + install -Dv xsft.png ${ICODIR} + install -Dv xrandr-slightly-fewer-tears.desktop ${APPDIR} + +uninstall: + rm -f ${BINDIR}/xsft.py + rm -f ${ICODIR}/xsfticon.png + rm -f ${APPDIR}/xrandr-slightly-fewer-tears.desktop -- cgit