repo: uritools action: commit revision: path_from: revision_from: 5dfc7b3d38d4ce0061ffb8166e640498ffdb46e3: path_to: revision_to:
commit 5dfc7b3d38d4ce0061ffb8166e640498ffdb46e3 Author: epochqwertDate: Sat Aug 22 03:44:14 2015 -0500 Forgot Makefile. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000000000000000000000000000000000000..7257526376b13c818ad1ef2ac43efd6d9727dfb5 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +CFLAGS=-std=c99 -pedantic -Wall +PREFIX=/usr/local +CC=gcc + +all: + $(CC) -o matchurl matchurl.c url.c + $(CC) -o cuturl cuturl.c url.c + +clean: + rm -f matchurl + rm -f cuturl + +install: + cp -f matchurl $(PREFIX)/bin/matchurl + cp -f cuturl $(PREFIX)/bin/cuturl
-----END OF PAGE-----