-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (27 loc) · 783 Bytes
/
Makefile
File metadata and controls
32 lines (27 loc) · 783 Bytes
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
# tinytools - scripts to improve your productivity.
# See LICENSE file for copyright and license details.
.POSIX:
CONFIG_FOLDER=/etc/tinytools
uninstall:
@echo "Removing tinytools..."
${MAKE} -C tsearch/ uninstall
${MAKE} -C tpomodoro/ uninstall
${MAKE} -C tmenu/ uninstall
${MAKE} -C tnotes/ uninstall
${MAKE} -C tgoeswall/ uninstall
${MAKE} -C tprogbar/ uninstall
${MAKE} -C ttodo/ uninstall
${MAKE} -C tyaml uninstall
rm -fr ${CONFIG_FOLDER}
@echo "done!"
install:
${MAKE} -C tsearch/ install
${MAKE} -C tmenu/ install
${MAKE} -C tgoeswall/ install
${MAKE} -C tnotes/ install
${MAKE} -C tpomodoro/ install
${MAKE} -C tprogbar/ install
${MAKE} -C ttodo/ install
${MAKE} -C tyaml/ install
@echo "tinytools installed successfully!"
.PHONY: install uninstall