diff options
author | epochqwert <epoch@hacking.allowed.org> | 2015-12-30 04:37:22 -0600 |
---|---|---|
committer | epochqwert <epoch@hacking.allowed.org> | 2015-12-30 04:37:22 -0600 |
commit | 1db8f7d916874f22c15df3121e3ec5ba5f7e7310 (patch) | |
tree | 128be6565fb3b598cc6828e85876f19fe7196234 /Makefile | |
parent | 4f05827c8b10d07cd9bc04424922a4dba4f728ab (diff) | |
download | uritools-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |