diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | Makefile | 4 | ||||
| -rwxr-xr-x | uristart.conf | 2 | 
3 files changed, 6 insertions, 1 deletions
| @@ -2,6 +2,7 @@ uricmp  uricut  uriescape  urimatch +urigetline  uriunescape  urijoin  shorten @@ -2,7 +2,7 @@ CFLAGS:=-std=c11 -pedantic -Wall  PREFIX:=/usr/local  CC:=gcc -all: urimatch uricut urijoin uricmp uriunescape uriescape shorten +all: urimatch uricut urijoin uricmp uriunescape uriescape shorten urimatchpairs urigetline  shorten: LDLIBS=-lcrypto  shorten: shorten.c @@ -24,6 +24,8 @@ clean:  	rm -f *.o  install: all +	install -t $(PREFIX)/bin urimatchpairs +	install -t $(PREFIX)/bin uristart.conf  	install -t $(PREFIX)/bin sqesc  	install -t $(PREFIX)/bin ssh_hack  	install -t $(PREFIX)/bin xwindowURI diff --git a/uristart.conf b/uristart.conf new file mode 100755 index 0000000..3d9ea7d --- /dev/null +++ b/uristart.conf @@ -0,0 +1,2 @@ +#!/usr/bin/env bash +exec cat "${XDG_CONFIG_HOME:-$HOME/.config}"/uristart.conf | 
