repo: uritools action: commit revision: path_from: revision_from: d0adb4621b5e4447bde26a8cd54201e4005a60e8: path_to: revision_to:
commit d0adb4621b5e4447bde26a8cd54201e4005a60e8 Author: epochDate: Fri Apr 6 02:04:36 2018 -0500 added new tools and removed old. commented out prefix to preventing overriding env var diff --git a/Makefile b/Makefile
--- a/Makefile +++ b/Makefile @@ -1,22 +1,20 @@ CFLAGS=-std=c99 -pedantic -Wall -PREFIX=/usr/local +#PREFIX=/usr/local CC=gcc -all: cuturl matchurl linturl +all: cuturl matchurl matchurl: matchurl.c url.h cuturl: cuturl.c url.h -linturl: linturl.c url.h - clean: rm -f matchurl rm -f cuturl - rm -f linturl rm -f *.o install: all - cp -f matchurl $(PREFIX)/bin/matchurl - cp -f cuturl $(PREFIX)/bin/cuturl - cp -f linturl $(PREFIX)/bin/linturl + install matchurl $(PREFIX)/bin/matchurl + install cuturl $(PREFIX)/bin/cuturl + install start $(PREFIX)/bin/start + install printfurl $(PREFIX)/bin/printfurl
-----END OF PAGE-----