Makefile (921B)
1 PREFIX = /usr/local 2 3 SCRIPTS = 2fa \ 4 aocd \ 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 spawn \ 33 status \ 34 status-linux \ 35 status-openbsd \ 36 templess \ 37 terminal \ 38 trash \ 39 urlgrep \ 40 virename \ 41 xedit \ 42 xedit-filter \ 43 xroot-update \ 44 xwallpaper-random-notify 45 46 all: install 47 48 install: 49 for s in ${SCRIPTS}; do\ 50 cp -f $$s ${DESTDIR}${PREFIX}/bin ; \ 51 chmod 755 ${DESTDIR}${PREFIX}/bin/$$s ; \ 52 done 53 54 uninstall: 55 for s in ${SCRIPTS}; do rm -rf ${DESTDIR}${PREFIX}/bin/$$s ; done 56 57 .PHONY: all install uninstall