-
Notifications
You must be signed in to change notification settings - Fork 168
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
empty := | ||
ROOTS := apps deps | ||
space := $(empty) $(empty) | ||
comma := $(empty),$(empty) | ||
VSN := $(shell expr substr `git rev-parse HEAD` 1 6) | ||
DATE := $(shell git show -s --format="%ci" HEAD | sed -e 's/\+/Z/g' -e 's/-/./g' -e 's/ /-/g' -e 's/:/./g') | ||
ERL_LIBS := $(subst $(space),:,$(ROOTS)) | ||
PLT_NAME := ~/.dialyzer_plt | ||
relx := "{release,{$(RELEASE),\"$(VER)\"},[$(subst $(space),$(comma),$(APPS))]}.\\n{include_erts,true}.\ | ||
\\n{extended_start_script,true}.\\n{generate_start_script,true}.\\n{sys_config,\"$(SYS)\"}.\ | ||
\\n{vm_args,\"$(VM)\"}.\\n{overlay,[{mkdir,\"log/sasl\"}]}." | ||
|
||
test: eunit ct | ||
compile: get-deps static-link | ||
delete-deps get-deps compile clean update-deps: | ||
rebar $@ | ||
.applist: | ||
./depman.erl $(APPS) > $@ | ||
$(RUN_DIR) $(LOG_DIR): | ||
mkdir -p $(RUN_DIR) & mkdir -p $(LOG_DIR) | ||
console: .applist | ||
ERL_LIBS=$(ERL_LIBS) erl $(ERL_ARGS) -eval \ | ||
'[ok = application:ensure_started(A, permanent) || A <- $(shell cat .applist)]' | ||
start: $(RUN_DIR) $(LOG_DIR) .applist | ||
ERL_LIBS=$(ERL_LIBS) run_erl -daemon $(RUN_DIR)/ $(LOG_DIR)/ "exec $(MAKE) console" | ||
attach: | ||
to_erl $(RUN_DIR)/ | ||
release: | ||
echo $(shell echo $(relx) > relx.config) & relx | ||
stop: | ||
kill -9 `ps ax -o pid= -o command=|grep $(RELEASE)|grep $(COOKIE)|awk '{print $$1}'` | ||
$(PLT_NAME): | ||
dialyzer --build_plt -r /usr/lib/erlang/lib/*/ebin --output_plt $(PLT_NAME) | ||
dialyzer --add_to_plt --plt $(PLT_NAME) deps/*/ebin | ||
dialyze: $(PLT_NAME) | ||
dialyzer --src deps/*/src -I deps -pa deps/n2o/ebin --plt $(PLT_NAME) | ||
tar: | ||
tar zcvf $(RELEASE)-$(VSN)-$(DATE).tar.gz _rel/lib/*/ebin _rel/lib/*/priv _rel/bin _rel/releases | ||
eunit: | ||
rebar eunit skip_deps=true | ||
ct: | ||
rebar ct skip_deps=true verbose=1 | ||
|
||
.PHONY: delete-deps get-deps compile clean console start attach release update-deps dialyze ct eunit tar |