Files
galaxy/Makefile
T
2006-11-15 16:28:21 +00:00

13 lines
329 B
Makefile

static: static/welcome.html
static: static/help.html
static: static/galaxyIndex.html
static: static/about.html
%.html : %.rst
./modules/rst2html.py --stylesheet="/static/help.css" --initial-header-level=2 < $< > $@
convert_images:
for f in src/images/*.psd; do \
convert $$f static/images/`basename $${f%%psd}png`; \
done