root/Makefile
| Revision 0:ae898a17920b, 329 bytes (checked in by James Taylor <james@bx.psu.edu>, 2 years ago) |
|---|
| Line | |
|---|---|
| 1 | static: static/welcome.html |
| 2 | static: static/help.html |
| 3 | static: static/galaxyIndex.html |
| 4 | static: static/about.html |
| 5 | |
| 6 | %.html : %.rst |
| 7 | ./modules/rst2html.py --stylesheet="/static/help.css" --initial-header-level=2 < $< > $@ |
| 8 | |
| 9 | convert_images: |
| 10 | for f in src/images/*.psd; do \ |
| 11 | convert $$f static/images/`basename $${f%%psd}png`; \ |
| 12 | done |
Note: See TracBrowser for help on using the browser.