1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
#
# Makefile to convert Quixote docs to HTML
#
TXT_FILES = $(wildcard *.txt)
HTML_FILES = $(filter-out LICENSE_24% CHANGES_24%,$(TXT_FILES:%.txt=%.html))
RST2HTML = rst2html.py
RST2HTML_OPTS = -o us-ascii
DEST_HOST = staging.mems-exchange.org
DEST_DIR = /www/www-docroot/software/quixote/doc
SS = default.css
%.html: %.txt
$(RST2HTML) $(RST2HTML_OPTS) $< $@
all: $(HTML_FILES)
clean:
rm -f $(HTML_FILES)
install:
rsync -vptgo *.html $(SS) $(DEST_HOST):$(DEST_DIR)
local-install:
dir=`pwd` ; \
cd $(DEST_DIR) && ln -sf $$dir/*.html $$dir/$(SS) .
|