summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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