summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2019-04-22 23:31:36 -0500
committerepoch <epoch@hacking.allowed.org>2019-04-22 23:31:36 -0500
commit76a789b0ca2845f1fa529093edfe62871686060e (patch)
treedf6ff9d8b626c9def7d417ee92702760512d1ebe /Makefile
parentcf90e381246b2543f123848e56fce58186b052d5 (diff)
downloaduritools-76a789b0ca2845f1fa529093edfe62871686060e.tar.gz
uritools-76a789b0ca2845f1fa529093edfe62871686060e.zip
rewrote urijoin so a salvaged bigger uristart would work again
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b67a2d6..f327ba1 100644
--- a/Makefile
+++ b/Makefile
@@ -2,12 +2,14 @@ CFLAGS:=-std=c11 -pedantic -Wall
PREFIX:=/usr/local
CC:=gcc
-all: uricut urimatch uriunescape uriescape uricmp
+all: urimatch uricut urijoin uricmp uriunescape uriescape
urimatch: urimatch.c uri.h
uricut: uricut.c uri.h
+urijoin: urijoin.c uri.h
+
uricmp: uricmp.c uri.h
uriunescape: uriunescape.c uri.h
@@ -21,6 +23,7 @@ clean:
install: all
install urimatch $(PREFIX)/bin/urimatch
install uricut $(PREFIX)/bin/uricut
+ install urijoin $(PREFIX)/bin/urijoin
install uricmp $(PREFIX)/bin/uricmp
install uristart $(PREFIX)/bin/uristart
install uriprintf $(PREFIX)/bin/uriprintf