diff options
Diffstat (limited to '')
-rw-r--r-- | bin/.gitignore | 8 | ||||
-rw-r--r-- | bin/Makefile | 7 |
2 files changed, 9 insertions, 6 deletions
diff --git a/bin/.gitignore b/bin/.gitignore index 4b8dd9b2..a9bc170e 100644 --- a/bin/.gitignore +++ b/bin/.gitignore @@ -2,12 +2,12 @@ atch bri dtch hnel -jrp -klon pbcopy pbd pbpaste -typo wake -watch xx +jrp +klon +typo +watch diff --git a/bin/Makefile b/bin/Makefile index a304c4cd..7c4f2c8d 100644 --- a/bin/Makefile +++ b/bin/Makefile @@ -1,9 +1,12 @@ -BINS = atch bri dtch hnel jrp klon pbcopy pbd pbpaste typo wake watch xx +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 @@ -13,7 +16,7 @@ pbcopy pbpaste: pbd clean: rm -f $(BINS) -link: $(BINS) +link: ln -s -f $(BINS:%=$(PWD)/%) ~/.bin unlink: |