sttemp

Simple template manager
git clone git://git.konyahin.xyz/sttemp
Log | Files | Refs | README | LICENSE

commit 7ded5b97e5735260e7e79eed0923b00be1bce267
parent 610c377f92a9ca89691747a5ee9ce4cb22842459
Author: Anton Konyahin <me@konyahin.xyz>
Date:   Thu,  6 Jan 2022 12:09:40 +0300

install and uninstall targets

Diffstat:
MMakefile | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -22,3 +22,9 @@ $(BIN): main.o files.o strings.o clean: rm $(BIN) rm *.o + +install: $(BIN) + cp sttemp /usr/local/bin/ + +uninstall: + rm -f /usr/local/bin/sttemp