Further improve documentation
[tig] / Makefile
index 57d7ead..e331135 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ LDFLAGS = -lcurses
 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)
@@ -16,7 +16,6 @@ install: all
                install $$prog $(PREFIX)/bin; \
        done
 
-
 install-docs: docs
        for doc in $(DOCS); do \
                case "$$doc" in \
@@ -25,7 +24,7 @@ install-docs: docs
        done
 
 clean:
-       rm -f $(PROGS) $(DOCS)
+       rm -f $(PROGS) $(DOCS) core
 
 .PHONY: all docs install clean