X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/b76c2afc7513ecf74694a73bf004bfb4315758f6..0721c53a06190932e1660250d5d1f89784a19424:/Makefile diff --git a/Makefile b/Makefile index 10339ac..90a7563 100644 --- a/Makefile +++ b/Makefile @@ -1,19 +1,33 @@ +PREFIX = $(HOME) LDFLAGS = -lcurses -CFLAGS = -g '-DVERSION="$(VERSION)"' -Wall +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) +all-debug: $(PROGS) +all-debug: CFLAGS += $(DFLAGS) docs: $(DOCS) install: all for prog in $(PROGS); do \ - install $$prog $(HOME)/bin; \ + install $$prog $(PREFIX)/bin; \ + done + +install-docs: docs + for doc in $(DOCS); do \ + case "$$doc" in \ + *.1) install $$doc $(PREFIX)/man/man1 ;; \ + esac \ 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 @@ -26,10 +40,10 @@ tig.1.txt: tig.c sed 's/\*\///;s/^[^*]*\* *//' > $@ %.1.html : %.1.txt - asciidoc -b xhtml11 -d manpage -f asciidoc.conf $< + asciidoc -b xhtml11 -d manpage $< %.1.xml : %.1.txt - asciidoc -b docbook -d manpage -f asciidoc.conf $< + asciidoc -b docbook -d manpage $< %.1 : %.1.xml xmlto man $<