repo: uritools action: commit revision: path_from: revision_from: b06cf53b0e636436b179fd1024c543036689aaeb: path_to: revision_to:
commit b06cf53b0e636436b179fd1024c543036689aaeb Author: epochqwertDate: 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
--- 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-----