summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2015-12-30 04:37:22 -0600
committerepochqwert <epoch@hacking.allowed.org>2015-12-30 04:37:22 -0600
commit1db8f7d916874f22c15df3121e3ec5ba5f7e7310 (patch)
tree128be6565fb3b598cc6828e85876f19fe7196234 /Makefile
parent4f05827c8b10d07cd9bc04424922a4dba4f728ab (diff)
downloaduritools-1db8f7d916874f22c15df3121e3ec5ba5f7e7310.tar.gz
uritools-1db8f7d916874f22c15df3121e3ec5ba5f7e7310.zip
enabled magic by default in cuturl.
made cuturl print empty string instead of trying to print nulls. matchurl was matching multiple times for things it shouldn't have and not cleaing out the url struct. Makefile now uses -Wall
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7257526..8c8e858 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,8 @@ PREFIX=/usr/local
CC=gcc
all:
- $(CC) -o matchurl matchurl.c url.c
- $(CC) -o cuturl cuturl.c url.c
+ $(CC) -Wall -o matchurl matchurl.c url.c
+ $(CC) -Wall -o cuturl cuturl.c url.c
clean:
rm -f matchurl