add Makefile Signed-off-by: kurth4cker <kurth4cker@gmail.com>
1 files changed, 26 insertions(+), 0 deletions(-) A Makefile
A Makefile => Makefile +26 -0
@@ 0,0 1,26 @@ .POSIX: .SUFFIXES: HARE = hare HAREFLAGS = PREFIX = /usr/local BINDIR = $(PREFIX)/bin all: most most: $(HARE) build $(HAREFLAGS) -o $@ cmd/$@/ check: # no-op clean: rm -f most install: install -Dm755 most $(DESTDIR)$(BINDIR)/most uninstall: rm -f $(DESTDIR)$(BINDIR)/most .PHONY: all check clean install uninstall