aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 091d06826c531b7f299244701190a4f8f9ccba9d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
PREFIX ?= /usr/local

all:
	@echo "targets are:"
	@echo "	install"
	@echo "	uninstall"

install:
	install -m 755 dpw $(PREFIX)/bin/dpw
	install -m 755 dpw-gpg $(PREFIX)/bin/dpw-gpg

uninstall:
	rm "$(PREFIX)/bin/dpw" "$(PREFIX)/bin/dpw-gpg"