Makefile 527 B

123456789101112131415161718
  1. RELEASE := kakaranet
  2. COOKIE := node_runner
  3. APPS := kernel stdlib sasl gproc cowboy cowlib ranch erlydtl n2o face db sync server
  4. VER := 1.0.0
  5. VM := rels/web/files/vm.args
  6. SYS := rels/web/files/sys.config
  7. PLT_NAME := ~/.n2o_dialyzer.plt
  8. ERL_ARGS := -args_file $(VM) -config $(SYS)
  9. RUN_DIR ?= rels/web/devbox
  10. LOG_DIR ?= rels/web/devbox/logs
  11. APP := apps/face/priv/static/nitrogen
  12. default: get-deps compile static-link
  13. static-link:
  14. rm -rf $(APP)
  15. ln -s ../../../../deps/n2o_scripts/n2o $(APP)
  16. include otp.mk