X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/d839253b7aa9ce121b56a92b05b69ba75cfc34e8..5dc795f2a5fb4ba44345f26293b50564356bc8dc:/Makefile?ds=sidebyside diff --git a/Makefile b/Makefile index ac545e6..a7ff69b 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ LDLIBS = -lcurses CFLAGS = -Wall -O2 DFLAGS = -g -DDEBUG -Werror PROGS = tig -DOCS = tig.1.txt tig.1.html tig.1 tigrc.5.html tigrc.5 \ +DOCS = tig.1.html tig.1 tigrc.5.html tigrc.5 \ manual.html manual.html-chunked README.html ifneq (,$(wildcard .git)) @@ -15,14 +15,14 @@ endif all: $(PROGS) all-debug: $(PROGS) all-debug: CFLAGS += $(DFLAGS) -docs: $(DOCS) +doc: $(DOCS) install: all for prog in $(PROGS); do \ install $$prog $(PREFIX)/bin; \ done -install-docs: docs +install-doc: doc for doc in $(DOCS); do \ case "$$doc" in \ *.1) install $$doc $(PREFIX)/man/man1 ;; \ @@ -35,18 +35,12 @@ clean: rm -f $(PROGS) $(DOCS) core spell-check: - aspell --lang=en --check tig.1.txt + aspell --lang=en --check tig.1.txt tigrc.5.txt manual.txt -.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 -f web.conf $<