utility/Makefile

11 行
210 B
Makefile
Raw パーマリンク 通常表示 履歴

2024-05-28 03:25:55 +09:00
SCRIPTS = $(shell file * | grep "shell script" | cut -d ":" -f1)
DIR = $(HOME)/.local/bin
.PHONY: install
install:
cp $(SCRIPTS) $(DIR)
.PHONY: uninstall
uninstall:
$(foreach s, $(SCRIPTS),rm $(DIR)/$(s);)