cgmnlm

colorful gemini line mode browser
git clone https://git.clttr.info/cgmnlm.git
Log (Feed) | Files | Refs (Tags) | README | LICENSE

commit 37396a375a68868490342e16140e67287445be17
parent 207a72012ef69de654a78e18d28182ecde1326e2
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sun, 20 Sep 2020 14:55:33 -0400

Add make install target

Diffstat:
MMakefile | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -31,4 +31,10 @@ clean: distclean: clean @rm -rf "$(OUTDIR)" -.PHONY: clean distclean docs +install: all + mkdir -p $(BINDIR) + mkdir -p $(MANDIR)/man1 + install -Dm755 gmni $(BINDIR)/gmni + install -Dm644 doc/gmni.1 $(MANDIR)/man1/gmni.1 + +.PHONY: clean distclean docs install