summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2016-10-11 06:41:02 +0000
committerepochqwert <epoch@hacking.allowed.org>2016-10-11 06:41:02 +0000
commitb06cf53b0e636436b179fd1024c543036689aaeb (patch)
tree7a62a73482bda4018551a51b54c5124a26622770 /Makefile
parent6bfda18041dffeac373ad799b22b0aceaaf6039d (diff)
downloaduritools-b06cf53b0e636436b179fd1024c543036689aaeb.tar.gz
uritools-b06cf53b0e636436b179fd1024c543036689aaeb.zip
changed the makefile to actually do sane stuff instead of rebuild every time.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index c652062..d711917 100644
--- a/Makefile
+++ b/Makefile
@@ -2,9 +2,10 @@ CFLAGS=-std=c99 -pedantic -Wall
PREFIX=/usr/local
CC=gcc
-all:
- $(CC) -Wall -o matchurl matchurl.c url.c
- $(CC) -Wall -o cuturl cuturl.c url.c
+matchurl: matchurl.c
+cuturl: cuturl.c
+
+all: matchurl cuturl
clean:
rm -f matchurl