mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-29 02:26:59 +08:00
13 lines
329 B
Makefile
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
|