Makefile: fix docutils commands call if extension is stripped

Looks like some distribution strip the extensions of the python commands and
some don't. Try to find the correct commands by ourself.

Reported-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Reviewed-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht
2011-01-27 19:50:24 +01:00
parent fa60f3f9b7
commit c8b8e26735
3 changed files with 10 additions and 5 deletions

View File

@ -5,18 +5,20 @@ SOURCES = $(wildcard *.rst)
HTML_TARGETS = $(patsubst %.rst,%.html,$(SOURCES))
RM = rm
RST2HTML=`type rst2html 2>/dev/null && echo rst2html || echo rst2html.py`
RST2MAN=`type rst2man 2>/dev/null && echo rst2man || echo rst2man.py`
all: html
html: $(HTML_TARGETS)
$(HTML_TARGETS): %.html : %.rst
rst2html.py $? $@
$(RST2HTML) $? $@
man: offlineimap.1
offlineimap.1: MANUAL.rst
rst2man.py MANUAL.rst offlineimap.1
$(RST2MAN) MANUAL.rst offlineimap.1
cp -f offlineimap.1 ..
clean: