X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/6b161b31fbea574bc35f2a42ae910b38207122cd..0721c53a06190932e1660250d5d1f89784a19424:/Makefile diff --git a/Makefile b/Makefile index 57d7ead..90a7563 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ LDFLAGS = -lcurses CFLAGS = '-DVERSION="$(VERSION)"' -Wall DFLAGS = -g -DDEBUG PROGS = tig -DOCS = tig.1.txt tig.1 tig.1.html +DOCS = tig.1.txt tig.1.html tig.1 VERSION = $(shell git-describe) all: $(PROGS) @@ -16,7 +16,6 @@ install: all install $$prog $(PREFIX)/bin; \ done - install-docs: docs for doc in $(DOCS); do \ case "$$doc" in \ @@ -25,7 +24,10 @@ install-docs: docs done clean: - rm -f $(PROGS) $(DOCS) + rm -f $(PROGS) $(DOCS) core + +spell-check: + aspell --lang=en --check tig.1.txt .PHONY: all docs install clean