X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/4c6fabc213355ec6a575d36d53baf661704c4056..511147de010477fc7808df7fc535a32dd59fae31:/Makefile diff --git a/Makefile b/Makefile index 9a0cb60..2020eba 100644 --- a/Makefile +++ b/Makefile @@ -1,37 +1,56 @@ -PREFIX = $(HOME) -LDFLAGS = -lcurses -CFLAGS = -g '-DVERSION="$(VERSION)"' -Wall +prefix = $(HOME) +bindir= $(prefix)/bin +mandir = $(prefix)/man +# DESTDIR= + +LDLIBS = -lcurses +CFLAGS = -Wall -O2 +DFLAGS = -g -DDEBUG -Werror PROGS = tig -DOCS = tig.1.txt tig.1 tig.1.html -VERSION = $(shell git-describe) +DOCS = tig.1.html tig.1 tigrc.5.html tigrc.5 \ + manual.html manual.html-chunked README.html + +ifneq (,$(wildcard .git)) +VERSION = $(shell git-describe) +WTDIRTY = $(shell git-diff-index --name-only HEAD 2>/dev/null) +CFLAGS += '-DVERSION="$(VERSION)$(if $(WTDIRTY),-dirty)"' +endif all: $(PROGS) -docs: $(DOCS) +all-debug: $(PROGS) +all-debug: CFLAGS += $(DFLAGS) +doc: $(DOCS) install: all for prog in $(PROGS); do \ - install $$prog $(PREFIX)/bin; \ + install $$prog $(DESTDIR)$(bindir); \ done -install-docs: docs +install-doc: doc + mkdir -p $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(mandir)/man5 for doc in $(DOCS); do \ case "$$doc" in \ - *.1) install $$doc $(PREFIX)/man/man1 ;; \ + *.1) install $$doc $(DESTDIR)$(mandir)/man1 ;; \ + *.5) install $$doc $(DESTDIR)$(mandir)/man5 ;; \ esac \ done clean: - rm -f $(PROGS) $(DOCS) + rm -rf manual.html-chunked + rm -f $(PROGS) $(DOCS) core + +spell-check: + aspell --lang=en --check tig.1.txt tigrc.5.txt manual.txt + +strip: all + strip $(PROGS) -.PHONY: all docs install clean +.PHONY: all all-debug doc install install-doc clean spell-check tig: tig.c -tig.1.txt: tig.c - sed -n '/\/\*\*/,/\*\*\//p' < $< | \ - sed 's/.*\*\*\///' | \ - sed '/^[^*]*\*\*/d' | \ - sed 's/\*\///;s/^[^*]*\* *//' > $@ +README.html: README + asciidoc -b xhtml11 -d article -a readme $< %.1.html : %.1.txt asciidoc -b xhtml11 -d manpage $< @@ -41,3 +60,21 @@ tig.1.txt: tig.c %.1 : %.1.xml xmlto man $< + +%.5.html : %.5.txt + asciidoc -b xhtml11 -d manpage $< + +%.5.xml : %.5.txt + asciidoc -b docbook -d manpage $< + +%.5 : %.5.xml + xmlto man $< + +%.html : %.txt + asciidoc -b xhtml11 -d article $< + +%.xml : %.txt + asciidoc -b docbook -d article $< + +%.html-chunked : %.xml + xmlto html -o $@ $<