Makefile (438B)
1 .PHONY: tests 2 tests: SRFI-123.log SRFI-123-GOOPS.log 3 4 SRFI-123.log: run-tests.scm srfi/srfi-123.scm 5 guile -L . run-tests.scm 6 7 SRFI-123-GOOPS.log: run-tests-goops.scm srfi/srfi-123/goops.scm 8 guile -L . run-tests-goops.scm 9 10 srfi-123.html: srfi-123.md 11 pandoc \ 12 --from=markdown_github-hard_line_breaks+pandoc_title_block \ 13 --standalone \ 14 --to=html \ 15 --css=http://srfi.schemers.org/srfi.css \ 16 srfi-123.md \ 17 >srfi-123.html