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