summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6e4ba24cb7486837c2105581e91e151a40e20cdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
BINDIR = $(HOME)/bin

TARGETS = mkheader.py isprime multi-send-key perm.py

all: $(TARGETS)
	@echo "Nothing to be done"

install:
	@echo "Installing the following scripts to $(BINDIR)"
	@echo " $(TARGETS)"
	@install -m755 -t $(BINDIR) $(TARGETS)

uninstall:
	@echo "Uninstalling the following scripts from $(BINDIR):"
	@echo " $(TARGETS)"
	@for s in $(TARGETS); do rm -f "$(BINDIR)/$${s}"; done