-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
41 lines (37 loc) · 941 Bytes
/
Makefile
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
BIN = ass2srt \
bat \
chkdomain \
cln \
ds \
evl \
flac2mp3 \
formatdisk \
lscan \
mklinusb \
mnt \
mp42mkv \
mpl \
parity \
pingie \
readmanpage \
rmcookies \
sext \
sfocus \
si \
sitetraffic \
todo \
tum \
urxvt-light \
vidinfo \
wav2mp3.sh \
yt
PREFIX = ${HOME}/bin
install:
@cd bin; for b in ${BIN}; do chmod +x "$$b"; done
@echo installing scripts in ${PREFIX}
@mkdir -p ${PREFIX}
@cd bin; for b in ${BIN}; do cp -f "$$b" ${PREFIX}/; done
uninstall:
@cd ${PREFIX}; for b in ${BIN}; do rm "$$b"; done
@echo uninstalled scripts from ${PREFIX}
.PHONY: install uninstall