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

default: install
dev_install:
ln -s $(PWD)/abra ~/.local/bin
install:
install abra $(HOME)/.local/bin/abra
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