summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2018-04-06 02:04:36 -0500
committerepoch <epoch@hacking.allowed.org>2018-04-06 02:04:36 -0500
commitd0adb4621b5e4447bde26a8cd54201e4005a60e8 (patch)
tree21aabed0a1daf72f990c0695d0f8ecd4b16ba613 /Makefile
parent1a8c2a28998114d24567ae6b04ee54297b0d5a07 (diff)
downloaduritools-d0adb4621b5e4447bde26a8cd54201e4005a60e8.tar.gz
uritools-d0adb4621b5e4447bde26a8cd54201e4005a60e8.zip
added new tools and removed old. commented out prefix to preventing overriding env var
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 6 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 7ed038d..8daaf11 100644
--- a/Makefile
+++ b/Makefile
@@ -1,22 +1,20 @@
CFLAGS=-std=c99 -pedantic -Wall
-PREFIX=/usr/local
+#PREFIX=/usr/local
CC=gcc
-all: cuturl matchurl linturl
+all: cuturl matchurl
matchurl: matchurl.c url.h
cuturl: cuturl.c url.h
-linturl: linturl.c url.h
-
clean:
rm -f matchurl
rm -f cuturl
- rm -f linturl
rm -f *.o
install: all
- cp -f matchurl $(PREFIX)/bin/matchurl
- cp -f cuturl $(PREFIX)/bin/cuturl
- cp -f linturl $(PREFIX)/bin/linturl
+ install matchurl $(PREFIX)/bin/matchurl
+ install cuturl $(PREFIX)/bin/cuturl
+ install start $(PREFIX)/bin/start
+ install printfurl $(PREFIX)/bin/printfurl