diff options
| author | epochqwert <epoch@hacking.allowed.org> | 2018-10-15 08:08:05 +0000 | 
|---|---|---|
| committer | epochqwert <epoch@hacking.allowed.org> | 2018-10-15 08:08:05 +0000 | 
| commit | d42135919f480c8bba4ca1f043fbabf44dac708f (patch) | |
| tree | c54d9845101936adbef757e81c18b20e464d4d37 | |
| parent | 61fa33424e49128ddca8ef679680882b04c96654 (diff) | |
| download | uritools-d42135919f480c8bba4ca1f043fbabf44dac708f.tar.gz uritools-d42135919f480c8bba4ca1f043fbabf44dac708f.zip | |
forgot to add urlescape to Makefile
| -rw-r--r-- | Makefile | 8 | 
1 files changed, 7 insertions, 1 deletions
| @@ -2,12 +2,16 @@ CFLAGS=-std=c99 -pedantic -Wall  PREFIX=/usr/local  CC=gcc -all: cuturl matchurl +all: cuturl matchurl urlunescape urlescape  matchurl: matchurl.c url.h  cuturl: cuturl.c url.h +urlunescape: urlunescape.c url.h + +urlescape: urlescape.c url.h +  clean:  	rm -f matchurl  	rm -f cuturl @@ -18,3 +22,5 @@ install: all  	install cuturl $(PREFIX)/bin/cuturl  	install start $(PREFIX)/bin/start  	install printfurl $(PREFIX)/bin/printfurl +	install urlunescape $(PREFIX)/bin/urlunescape +	install urlescape $(PREFIX)/bin/urlescape | 
