This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
abra/Makefile

15 lines
285 B
Makefile
Raw Normal View History

2020-09-08 06:48:53 +00:00
default: install
2020-09-07 21:29:29 +00:00
dev_install:
2020-09-08 06:49:02 +00:00
ln -s $(PWD)/abra ~/.local/bin
2020-09-07 21:29:29 +00:00
install:
install abra $(HOME)/.local/bin/abra
2020-09-08 07:19:03 +00:00
get_yq:
wget https://github.com/mikefarah/yq/releases/download/3.3.2/yq_linux_amd64 && \
chmod +x yq_linux_amd64 && \
mv yq_linux_amd64 yq
.PHONY: dev_install install