summaryrefslogtreecommitdiff
path: root/Makefile
blob: 4764de212781dc5a942b431462d9e88969cd07b4 (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

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