From b06cf53b0e636436b179fd1024c543036689aaeb Mon Sep 17 00:00:00 2001 From: epochqwert Date: Tue, 11 Oct 2016 06:41:02 +0000 Subject: changed the makefile to actually do sane stuff instead of rebuild every time. --- Makefile | 7 ++++--- 1 file 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 -- cgit v1.2.3