commit ac91eab7e3fa2a0d8b1379b827b88d9138b74a90
parent beea884e3bec4ede77c2b17961f41c0008b558cd
Author: Rosie K Languet <rkl@rosiesworkshop.net>
Date:   Thu, 11 Sep 2025 18:00:36 -0400

fix Makefile and add binary to .gitignore

Signed-off-by: Rosie K Languet <rkl@rosiesworkshop.net>

Diffstat:
A.gitignore | 1+
MMakefile | 8++++----
2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -0,0 +1 @@ +harehelper diff --git a/Makefile b/Makefile @@ -20,12 +20,12 @@ check: $(HARE) test $(HAREFLAGS) clean: - rm -f $BINS + rm -f $(BINS) -install: - install -Dm755 example-cmd $(DESTDIR)$(BINDIR)/example-cmd +install: $(BINS) + install -Dm755 harehelper $(DESTDIR)$(BINDIR)/harehelper uninstall: - rm -f $(DESTDIR)$(BINDIR)/example-cmd + rm -f $(DESTDIR)$(BINDIR)/harehelper .PHONY: all check clean install uninstall