commit e8f7d8838d23892cadb52aaa0c1fbd26d0c7b55a parent b98e05ba63f2e108df634b4d9f9e5530769c6b80 Author: Sebastiano Tronto <sebastiano.tronto@gmail.com> Date: Thu, 10 Jun 2021 19:06:36 +0200 Makefile Diffstat:
A | Makefile | | | 47 | +++++++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 47 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,47 @@ +PREFIX = /usr/local + +SCRIPTS = addressgrep \ + backup-config \ + battery-checknow \ + battery-status \ + brightness \ + dmenu-dwm-sessionmanager \ + dmenu-filepicker \ + dmenu-mail-aliases \ + dmenu-screenshot \ + dmenu-unmount \ + dmenu-urlselect \ + dmenu-websearch \ + dunst-toggle \ + mail-checknow \ + mail-compose \ + notify-battery \ + notify-time \ + open-file \ + open-stdin \ + open-url \ + popup-cal12 \ + popup-cal3 \ + popup-terminal \ + sfeed-browser \ + spawn \ + templess \ + togglemute \ + urlgrep \ + volume \ + websearch \ + xedit-filter \ + xkboptions \ + xplumb \ + xwallpaper-random-notify + +install: + for s in ${SCRIPTS}; do\ + cp -f $$s ${DESTDIR}${PREFIX}/bin ; \ + chmod 755 ${DESTDIR}${PREFIX}/bin/$$s ; \ + done + +uninstall: + for s in ${SCRIPTS}; do rm -rf ${DESTDIR}${PREFIX}/bin/$$s ; done + +.PHONY: install uninstall