aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 5b7afc4ed17ed54222ec1b4fa184b64f4c6af890 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
PREFIX ?= $(HOME)/.local

install:
	mkdir -p $(PREFIX)/bin
	install -Dm755 src/mojicrypt $(PREFIX)/bin/mojicrypt
	@echo "installed to $(PREFIX)/bin/mojicrypt"

remove:
	rm -f $(PREFIX)/bin/mojicrypt

.PHONY: install remove