From d42135919f480c8bba4ca1f043fbabf44dac708f Mon Sep 17 00:00:00 2001 From: epochqwert Date: Mon, 15 Oct 2018 08:08:05 +0000 Subject: forgot to add urlescape to Makefile --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'Makefile') 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 -- cgit v1.2.3