aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano.tronto@gmail.com>2021-06-10 19:06:36 +0200
committerSebastiano Tronto <sebastiano.tronto@gmail.com>2021-06-10 19:06:36 +0200
commite8f7d8838d23892cadb52aaa0c1fbd26d0c7b55a (patch)
treef3d89694c4395d9755899192653e5175e67c8a17 /Makefile
parentb98e05ba63f2e108df634b4d9f9e5530769c6b80 (diff)
downloadscripts-e8f7d8838d23892cadb52aaa0c1fbd26d0c7b55a.tar.gz
scripts-e8f7d8838d23892cadb52aaa0c1fbd26d0c7b55a.zip
Makefile
Diffstat (limited to '')
-rw-r--r--Makefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..f93e2f0
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,47 @@
1PREFIX = /usr/local
2
3SCRIPTS = addressgrep \
4 backup-config \
5 battery-checknow \
6 battery-status \
7 brightness \
8 dmenu-dwm-sessionmanager \
9 dmenu-filepicker \
10 dmenu-mail-aliases \
11 dmenu-screenshot \
12 dmenu-unmount \
13 dmenu-urlselect \
14 dmenu-websearch \
15 dunst-toggle \
16 mail-checknow \
17 mail-compose \
18 notify-battery \
19 notify-time \
20 open-file \
21 open-stdin \
22 open-url \
23 popup-cal12 \
24 popup-cal3 \
25 popup-terminal \
26 sfeed-browser \
27 spawn \
28 templess \
29 togglemute \
30 urlgrep \
31 volume \
32 websearch \
33 xedit-filter \
34 xkboptions \
35 xplumb \
36 xwallpaper-random-notify
37
38install:
39 for s in ${SCRIPTS}; do\
40 cp -f $$s ${DESTDIR}${PREFIX}/bin ; \
41 chmod 755 ${DESTDIR}${PREFIX}/bin/$$s ; \
42 done
43
44uninstall:
45 for s in ${SCRIPTS}; do rm -rf ${DESTDIR}${PREFIX}/bin/$$s ; done
46
47.PHONY: install uninstall

Generated with cgit - Back to sebastiano.tronto.net