blob: cdaf8ab6d879f0bf504b4e6a9129e5e0fa9116e1 (
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
29
30
31
32
33
34
|
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 $@
setuid: bri
chown root bri
chmod u+s bri
color: color.o fb.o
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 portable setuid clean link unlink
|