From 9da7e330fae44ed09ca983cb69361e856f658b42 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Sun, 3 May 2020 19:47:22 +0000 Subject: Add install, uninstall targets --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5c9b086..2614ff2 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +PREFIX = /usr/local + CURL ?= curl TAR ?= tar @@ -35,3 +37,11 @@ STRIP.posix = 1 clean: rm -fr ${SYSTEMS} *.tar + +install: exman ${SYSTEMS} + install -d ${PREFIX}/bin ${PREFIX}/share/exman + install exman ${PREFIX}/bin + ${TAR} -c -f - ${SYSTEMS} | ${TAR} -xo -f - -C ${PREFIX}/share/exman + +uninstall: + rm -fr ${PREFIX}/bin/exman ${PREFIX}/share/exman -- cgit 1.4.1 ed'>master dontfiles
summary refs log tree commit diff
path: root/bin/cash/parser.c (unfollow)
Commit message (Expand)Author
2019-02-10Remove pattend from hiJune McEnroe
2019-02-10Replace uses of pattend with newline patternsJune McEnroe
2019-02-10Add hi debug outputJune McEnroe
2019-02-10Actually do HTML " escapingJune McEnroe
2019-02-10Set git commit.verboseJune McEnroe
2019-02-10Add back missing static keywordJune McEnroe