summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2018-10-15 08:08:05 +0000
committerepochqwert <epoch@hacking.allowed.org>2018-10-15 08:08:05 +0000
commitd42135919f480c8bba4ca1f043fbabf44dac708f (patch)
treec54d9845101936adbef757e81c18b20e464d4d37 /Makefile
parent61fa33424e49128ddca8ef679680882b04c96654 (diff)
downloaduritools-d42135919f480c8bba4ca1f043fbabf44dac708f.tar.gz
uritools-d42135919f480c8bba4ca1f043fbabf44dac708f.zip
forgot to add urlescape to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e90c8f8..7edc560 100644
--- a/Makefile
+++ b/Makefile
@@ -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