blob: 7c4f2c8d213ed63b0fc3d71b193f78aeedf86eed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
PINS = atch bri dtch hnel pbcopy pbd pbpaste wake xx
BINS = $(PINS) jrp klon typo watch
CFLAGS += -Wall -Wextra -Wpedantic
LDLIBS = -lcurses -ledit -lutil
all: $(BINS) .gitignore
portable: $(PINS) .gitignore
atch: dtch
ln -f dtch atch
pbcopy pbpaste: pbd
ln -f pbd $@
clean:
rm -f $(BINS)
link:
ln -s -f $(BINS:%=$(PWD)/%) ~/.bin
unlink:
rm -f $(BINS:%=~/.bin/%)
.gitignore: Makefile
echo $(BINS) | tr ' ' '\n' > .gitignore
.PHONY: all clean link unlink
|