もちろん rebar 前提です。 OMake とか watch コマンドとか色々ありますが、自分は Python の watchdog を使っています。 watchdog は Python で出来てる監視ツールです、pip でインストールしましょう $ pip install watchdogMakefile ... 色々省いてます .PHONY: test compile: @./rebar compile skip_deps=true xref: compile @./rebar xref skip_deps=true clean: @./rebar clean skip_deps=true test: xref @./rebar skip_deps=true eunitwatchdog はイベント系ライブラリなのですが、シェルコマンドとしても使えます。 監視は *.erl と *.h

