repo: uritools
action: commit
revision: 
path_from: 
revision_from: b06cf53b0e636436b179fd1024c543036689aaeb:
path_to: 
revision_to: 
git.thebackupbox.net
uritools
git clone git://git.thebackupbox.net/uritools
commit b06cf53b0e636436b179fd1024c543036689aaeb
Author: epochqwert 
Date:   Tue Oct 11 06:41:02 2016 +0000

    changed the makefile to actually do sane stuff instead of rebuild every time.

diff --git a/Makefile b/Makefile
index c65206216978e06b0723044d4aa429dc68cdf35c..
index ..d7119171cc7a43291edbcf9cb1bac568c80ab552 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

-----END OF PAGE-----