Code

Add support for opening any blob in an editor
[tig.git] / Makefile
index 575c5bfa073d1b7928452b580cef0897738ca576..1107f95e6ffc990a74c2cf83722dfec3dfebe537 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@ CFLAGS ?= -Wall -O2
 DFLAGS = -g -DDEBUG -Werror
 PROGS  = tig
 MANDOC = tig.1 tigrc.5
-HTMLDOC = tig.1.html tigrc.5.html manual.html README.html
+HTMLDOC = tig.1.html tigrc.5.html manual.html README.html NEWS.html
 ALLDOC = $(MANDOC) $(HTMLDOC) manual.html-chunked manual.pdf
 
 # Never include the release number in the tarname for tagged
@@ -99,8 +99,9 @@ clean:
        $(RM) $(PROGS) core *.o *.xml
 
 distclean: clean
-       $(RM) -r manual.html-chunked *.toc $(ALLDOC)
-       $(RM) -r autom4te.cache aclocal.m4 config.{h,log,make,status} config.h.in configure
+       $(RM) -r manual.html-chunked autom4te.cache
+       $(RM) *.toc $(ALLDOC) aclocal.m4 configure
+       $(RM) config.h config.log config.make config.status config.h.in
 
 spell-check:
        aspell --lang=en --check tig.1.txt tigrc.5.txt manual.txt
@@ -162,6 +163,9 @@ manual.toc: manual.txt
 README.html: README asciidoc.conf
        $(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d article -a readme $<
 
+NEWS.html: NEWS asciidoc.conf
+       $(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d article $<
+
 %.1.html : %.1.txt asciidoc.conf
        $(ASCIIDOC) $(ASCIIDOC_FLAGS) -b xhtml11 -d manpage $<