19 lines
520 B
Makefile
19 lines
520 B
Makefile
PROJECT = wsio
|
|
PROJECT_DESCRIPTION = WebSocket IO
|
|
PROJECT_VERSION = 0.2.0
|
|
|
|
# By default templates indent with a single tab per indentation
|
|
# level. Set this variable to the number of spaces you prefer:
|
|
SP = 2
|
|
|
|
DEPS += cowboy jsx st
|
|
DEP_PLUGINS = cowboy
|
|
|
|
dep_cowboy_commit = 2.12.0
|
|
dep_st = git https://git.sr.ht/~umgeher/st 1.2.4
|
|
dep_jsx = git https://code.kontrl.tech/umgeher/jsx master
|
|
|
|
include erlang.mk
|
|
|
|
run:
|
|
gmake && SHELL_OPTS="-config config/sys.config -eval 'application:ensure_all_started(wsio).'" gmake shell
|