Browse Source

add otp.mk

221V 1 year ago
parent
commit
80c5282104
2 changed files with 68 additions and 0 deletions
  1. 7 0
      Makefile
  2. 61 0
      otp.mk

+ 7 - 0
Makefile

@@ -0,0 +1,7 @@
+RELEASE := n2o_sample
+COOKIE  := node_runner
+VER     := 1.0.0
+
+default: compile
+
+include otp.mk

+ 61 - 0
otp.mk

@@ -0,0 +1,61 @@
+ifeq ($(OS),Windows_NT)
+    SEPARATOR=;
+else
+    SEPARATOR=:
+endif
+
+VM       := vm.args
+SYS      := sys.config
+PLT_NAME := ~/.n2o_dialyzer.plt
+ERL_ARGS := -args_file $(VM) -config $(SYS)
+RUN_DIR  ?= rels/web/devbox
+LOG_DIR  ?= rels/web/devbox/logs
+empty    :=
+ROOTS    := apps deps
+space    := $(empty) $(empty)
+comma    := $(empty),$(empty)
+VSN      := $(shell git rev-parse HEAD | head -c 6)
+DATE     := $(shell date "+%Y%m%d-%H%M%S")
+ERL_LIBS := $(subst $(space),$(SEPARATOR),$(ROOTS))
+relx     := "{release,{$(RELEASE),\"$(VER)\"},[$(RELEASE)]}.\\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
+delete-deps get-deps update-deps:
+	rebar $@
+compile:
+	rebar compile skip_deps=true
+clean:
+	rm -f .applist
+	rebar $@
+.applist:
+	$(eval APPS := $(subst deps/,,$(subst apps/,,$(shell find apps deps -maxdepth 1 -mindepth 1 -type d))))
+	mad plan
+$(RUN_DIR) $(LOG_DIR):
+	mkdir -p $(RUN_DIR) & mkdir -p $(LOG_DIR)
+console: .applist
+	ERL_LIBS="$(ERL_LIBS)" erl +pc unicode $(ERL_ARGS) -eval '[application:start(A) || A <- $(shell cat .applist)]'
+start: $(RUN_DIR) $(LOG_DIR) .applist
+	RUN_ERL_LOG_GENERATIONS=1000 RUN_ERL_LOG_MAXSIZE=20000000 \
+	ERL_LIBS=$(ERL_LIBS) run_erl -daemon $(RUN_DIR)/ $(LOG_DIR)/ "exec $(MAKE) console"
+attach:
+	to_erl $(RUN_DIR)/
+release:
+	echo $(relx) > relx.config && relx
+stop:
+	@kill -9 $(shell ps ax -o pid= -o command=|grep $(RELEASE)|grep $(COOKIE)|awk '{print $$1}')
+$(PLT_NAME):
+	$(eval APPS := $(subst deps/,,$(subst apps/,,$(shell find apps deps -maxdepth 1 -mindepth 1 -type d))))
+	ERL_LIBS=$(ERL_LIBS) dialyzer --build_plt --output_plt $(PLT_NAME) --apps $(APPS) || true
+dialyze: $(PLT_NAME) compile
+	$(eval APPS := $(shell find apps deps -maxdepth 1 -mindepth 1 -type d))
+	@$(foreach var,$(APPS),(echo "Process $(var)"; dialyzer -q $(var)/ebin --plt $(PLT_NAME) --no_native -Werror_handling -Wunderspecs -Wrace_conditions -Wno_undefined_callbacks);)
+tar: release
+	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