12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- # MySQL/OTP
- #
- # This Makefile should be complete enough for this project to be used as an
- # erlang.mk dependency.
- #
- # Additional targets:
- #
- # - tests-report: Creates doc/eunit.html with the coverage and eunit output.
- # - gh-pages: Generates docs and eunit reports and commits these in the
- # gh-pages which Github publishes automatically when pushed.
- # - CHANGELOG.md: Generates a changelog from the git commits and tags.
- # - publish-hex: Publishes package and docs to Hex. Requires Mix.
- .PHONY: gh-pages tests-report tests-prep CHANGELOG.md publish-hex
- PROJECT = mysql
- EDOC_OPTS = {stylesheet_file,"priv/edoc-style.css"},{todo,true}
- EUNIT_OPTS = {verbose,true}
- PLT_APPS = crypto ssl inets public_key
- SHELL_PATH = -pa ebin
- ERLANG_MK_BUILD_CONFIG = erlang-mk.build.config
- include erlang.mk
- # Generate keys for SSL tests. Requires configuring and restarting MySQL.
- tests-prep:
- $(MAKE) -C test/ssl
- distclean::
- $(MAKE) -C test/ssl clean
- CHANGELOG.md:
- priv/bin/changelog.sh > $@
- # Update the local 'gh-pages' branch with pregenerated output files
- # (trick from https://groups.google.com/forum/#!topic/github/XYxkdzxpgCo)
- gh-pages: docs tests-report
- @if [ $$(git name-rev --name-only HEAD) != master ] ; then \
- echo "Not on master. Aborting." ; \
- false ; \
- fi
- @git update-ref refs/heads/gh-pages origin/gh-pages '' 2>/dev/null || true
- @GIT_INDEX_FILE=gitindex.tmp; export GIT_INDEX_FILE; \
- rm -f $${GIT_INDEX_FILE} && \
- git add -f doc/*.html doc/stylesheet.css doc/erlang.png && \
- git update-ref refs/heads/gh-pages \
- $$(echo "Autogenerated html pages for $$(git describe --tags)" \
- | git commit-tree $$(git write-tree --prefix=doc) \
- -p refs/heads/gh-pages)
- @rm gitindex.tmp
- @echo "Committed $$(git describe --tags) in the gh-pages branch."
- # Build eunit.html containing the coverage report and the test output in the
- # doc directory.
- tests-report: test_command=$(MAKE) --no-print-directory tests COVER=1 \
- COVER_REPORT_DIR=
- tests-report:
- @rm -f cover/*.html
- @$(test_command) | tee tests.output
- @$(MAKE) --no-print-directory cover-report
- @(cat cover/index.html | sed 's!</body></html>!!' ; \
- echo '<h3>Output of <code>$(test_command)</code></h3><pre>' ; \
- sed 's/&/\&/g; s/</\</g; s/>/\>/g;' tests.output ; \
- echo '</pre>' ; \
- echo '</body></html>') > doc/eunit.html
- @cp cover/*.COVER.html doc/
- # For publishing to Hex using Mix
- publish-hex: docs mix.exs
- mix hex.publish
- mix.exs: priv/bin/mk_mix_file.escript
- priv/bin/mk_mix_file.escript > $@
|