24 lines
639 B
Makefile
24 lines
639 B
Makefile
PREFIX=$(HOME)
|
|
|
|
install:
|
|
install -Dm755 youtube-mp3 $(DESTDIR)$(PREFIX)/bin/youtube-mp3
|
|
install -Dm755 nope $(DESTDIR)$(PREFIX)/bin/nope
|
|
install -Dm755 m4a2wav $(DESTDIR)$(PREFIX)/bin/m4a2wav
|
|
install -Dm755 src $(DESTDIR)$(PREFIX)/bin/src
|
|
install -Dm755 blue $(DESTDIR)$(PREFIX)/bin/blue
|
|
|
|
uninstall:
|
|
$(RM) $(DESTDIR)$(PREFIX)/bin/youtube-mp3
|
|
$(RM) $(DESTDIR)$(PREFIX)/bin/nope
|
|
$(RM) $(DESTDIR)$(PREFIX)/bin/m4a2wav
|
|
$(RM) $(DESTDIR)$(PREFIX)/bin/src
|
|
$(RM) $(DESTDIR)$(PREFIX)/bin/blue
|
|
|
|
shellcheck:
|
|
shellcheck youtube-mp3
|
|
shellcheck nope
|
|
shellcheck m4a2wav
|
|
shellcheck src
|
|
shellcheck blue
|
|
|
|
.PHONY: install uninstall shellcheck
|