aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 08b419e55011d831d0b1460865b3c5f084fcb7eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
PREFIX = /usr/local

SCRIPTS =       addressgrep \
		battery-checknow \
		battery-status \
		brightness \
		dmenu-bookmarks \
		dmenu-dwm-sessionmanager \
		dmenu-filepicker \
		dmenu-mail-aliases \
		dmenu-screenshot \
		dmenu-unmount \
		dmenu-urlselect \
		dmenu-websearch \
		mail-checknow \
		mail-compose \
		notify-battery \
		notify-time \
		open-file \
		open-stdin \
		open-url \
		popup-cal12 \
		popup-cal3 \
		popup-terminal \
		secret \
		sel \
		sfeed-browser \
		spawn \
		templess \
		terminal \
		togglemute \
		translate \
		trash \
		urlgrep \
		volume \
		websearch \
		xedit \
		xedit-filter \
		xkboptions \
		xplumb \
		xprop-active-window-id \
		xwallpaper-random-notify

all: install

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: all install uninstall

Generated with cgit - Back to sebastiano.tronto.net