X-Git-Url: https://git.distorted.org.uk/~mdw/tig/blobdiff_plain/d839253b7aa9ce121b56a92b05b69ba75cfc34e8..511147de010477fc7808df7fc535a32dd59fae31:/Makefile diff --git a/Makefile b/Makefile index ac545e6..2020eba 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,13 @@ -PREFIX = $(HOME) +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.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,18 +19,19 @@ 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; \ + 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 ;; \ - *.5) install $$doc $(PREFIX)/man/man5 ;; \ + *.1) install $$doc $(DESTDIR)$(mandir)/man1 ;; \ + *.5) install $$doc $(DESTDIR)$(mandir)/man5 ;; \ esac \ done @@ -35,20 +40,17 @@ 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 +strip: all + strip $(PROGS) -tig: tig.c +.PHONY: all all-debug doc install install-doc clean spell-check -tig.1.txt: tig.c - sed -n '/\/\*\*/,/\*\*\//p' < $< | \ - sed 's/.*\*\*\/.*//' | \ - sed '/^[^*]*\*\*/d' | \ - sed 's/\*\///;s/^[^*]*\* *//' > $@ +tig: tig.c README.html: README - asciidoc -b xhtml11 -d article -f web.conf $< + asciidoc -b xhtml11 -d article -a readme $< %.1.html : %.1.txt asciidoc -b xhtml11 -d manpage $<