diff options
author | epochqwert <epoch@hacking.allowed.org> | 2016-10-11 06:49:04 +0000 |
---|---|---|
committer | epochqwert <epoch@hacking.allowed.org> | 2016-10-11 06:49:04 +0000 |
commit | 7263e71e12b542122fa20e3263ba0e33bc7384ac (patch) | |
tree | c2fb3725eb2d46b0999f78eac0578b31dfa65611 /Makefile | |
parent | f18f97a9745e946f2bdfd98b8fbb38da983f705d (diff) | |
download | uritools-7263e71e12b542122fa20e3263ba0e33bc7384ac.tar.gz uritools-7263e71e12b542122fa20e3263ba0e33bc7384ac.zip |
actually tested stuff and figured out that the first rule is the default one. oki doki.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -2,10 +2,11 @@ CFLAGS=-std=c99 -pedantic -Wall PREFIX=/usr/local CC=gcc -matchurl: matchurl.c -cuturl: cuturl.c +all: cuturl matchurl -all: matchurl cuturl +matchurl: matchurl.c url.o + +cuturl: cuturl.c url.o clean: rm -f matchurl |