Makefile (929B)
1 PREFIX = /usr/local 2 3 SCRIPTS = 2fa \ 4 alg \ 5 battery-checknow \ 6 battery-status \ 7 clip \ 8 config-backup \ 9 cth \ 10 cubeviz \ 11 dmenu-bookmarks \ 12 dmenu-dwm-sessionmanager \ 13 dmenu-filepicker \ 14 dmenu-screenshot \ 15 dmenu-unmount \ 16 dmenu-urlselect \ 17 event \ 18 feed \ 19 ffmpeg-screenrecord \ 20 ffmpeg-facecam \ 21 mail-compose \ 22 mergepdf \ 23 notify \ 24 open-file \ 25 open-stdin \ 26 open-url \ 27 popup-cal12 \ 28 popup-cal3 \ 29 popup-terminal \ 30 secret \ 31 sel \ 32 share \ 33 spawn \ 34 status \ 35 status-openbsd \ 36 status-void \ 37 templess \ 38 terminal \ 39 trash \ 40 urlgrep \ 41 virename \ 42 xedit \ 43 xedit-filter \ 44 xroot-update \ 45 xwallpaper-random-notify 46 47 all: install 48 49 install: 50 for s in ${SCRIPTS}; do\ 51 cp -f $$s ${DESTDIR}${PREFIX}/bin ; \ 52 chmod 755 ${DESTDIR}${PREFIX}/bin/$$s ; \ 53 done 54 55 uninstall: 56 for s in ${SCRIPTS}; do rm -rf ${DESTDIR}${PREFIX}/bin/$$s ; done 57 58 .PHONY: all install uninstall