diff options
| author | epochqwert <epoch@hacking.allowed.org> | 2016-10-11 06:41:02 +0000 | 
|---|---|---|
| committer | epochqwert <epoch@hacking.allowed.org> | 2016-10-11 06:41:02 +0000 | 
| commit | b06cf53b0e636436b179fd1024c543036689aaeb (patch) | |
| tree | 7a62a73482bda4018551a51b54c5124a26622770 | |
| parent | 6bfda18041dffeac373ad799b22b0aceaaf6039d (diff) | |
| download | uritools-b06cf53b0e636436b179fd1024c543036689aaeb.tar.gz uritools-b06cf53b0e636436b179fd1024c543036689aaeb.zip | |
changed the makefile to actually do sane stuff instead of rebuild every time.
| -rw-r--r-- | Makefile | 7 | 
1 files changed, 4 insertions, 3 deletions
| @@ -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 | 
