forked from 2600hz/kazoo
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
f7e37f0
commit 92e7a32
Showing
3,980 changed files
with
39,371 additions
and
31,507 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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
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,19 @@ | ||
ROOT = ../ | ||
REBAR = $(ROOT)/utils/rebar/rebar | ||
|
||
MAKEDIRS = */Makefile | ||
|
||
.PHONY: all compile clean $(MAKEDIRS) | ||
|
||
all: compile | ||
|
||
compile: ACTION = all | ||
compile: $(MAKEDIRS) | ||
$(REBAR) compile | ||
|
||
clean: ACTION = clean | ||
clean: $(MAKEDIRS) | ||
$(REBAR) clean | ||
|
||
$(MAKEDIRS): | ||
$(MAKE) -C $(@D) $(ACTION) |
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,57 @@ | ||
PROJECT = acdc | ||
ROOT = ../.. | ||
REBAR = $(ROOT)/utils/rebar/rebar | ||
DIALYZER = dialyzer | ||
|
||
EBINS = $(shell find $(ROOT)/core -maxdepth 2 -name ebin -print) $(shell find $(ROOT)/deps -maxdepth 2 -name ebin -print) | ||
PA = $(foreach EBIN,$(EBINS),-pa $(EBIN)) | ||
|
||
ERLC_OPTS = +debug_info +warn_export_all -I$(ROOT)/core -I$(ROOT)/deps $(PA) | ||
# +bin_opt_info | ||
|
||
DIRS = . \ | ||
$(ROOT)/core/whistle-1.0.0 \ | ||
$(ROOT)/core/whistle_amqp-1.0.0 \ | ||
$(ROOT)/core/whistle_couch-1.0.0 \ | ||
$(ROOT)/core/whistle_apps-1.0.0 | ||
|
||
.PHONY: all compile clean | ||
|
||
all: compile | ||
|
||
MODULES = $(shell ls src/*.erl | sed 's/src\///;s/\.erl/,/' | sed '$$s/.$$//') | ||
|
||
compile: ebin/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES)\]}/' \ | ||
> ebin/$(PROJECT).app | ||
-@$(MAKE) ebin/$(PROJECT).app | ||
|
||
ebin/$(PROJECT).app: src/*.erl | ||
@mkdir -p ebin/ | ||
erlc -v $(ERLC_OPTS) -o ebin/ -pa ebin/ $? | ||
|
||
compile-test: test/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES)\]}/' \ | ||
> test/$(PROJECT).app | ||
-@$(MAKE) test/$(PROJECT).app | ||
|
||
test/$(PROJECT).app: src/*.erl | ||
@mkdir -p test/ | ||
erlc -v $(ERLC_OPTS) -o test/ -pa test/ $? | ||
|
||
clean: | ||
rm -f ebin/* | ||
rm -f test/*.beam test/$(PROJECT).app | ||
rm -f erl_crash.dump | ||
|
||
test: clean compile-test eunit | ||
|
||
eunit: compile-test | ||
erl -noshell -pa test -eval "eunit:test([$(MODULES)], [verbose])" -s init stop | ||
|
||
dialyze: | ||
@$(DIALYZER) $(foreach DIR,$(DIRS),$(DIR)/ebin) \ | ||
--plt $(ROOT)/.platform_dialyzer.plt --no_native \ | ||
-Werror_handling -Wrace_conditions -Wunmatched_returns # -Wunderspecs |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
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,12 @@ | ||
{application, acdc, | ||
[ | ||
{description, "ACDc - Automatic Call Distribution commander"}, | ||
{vsn, "1"}, | ||
{registered, []}, | ||
{applications, [ | ||
kernel, | ||
stdlib | ||
]}, | ||
{mod, { acdc_app, []}}, | ||
{env, []} | ||
]}. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,58 @@ | ||
PROJECT = callflow | ||
ROOT = ../.. | ||
REBAR = $(ROOT)/utils/rebar/rebar | ||
DIALYZER = dialyzer | ||
|
||
EBINS = $(shell find $(ROOT)/core -maxdepth 2 -name ebin -print) $(shell find $(ROOT)/deps -maxdepth 2 -name ebin -print) | ||
PA = $(foreach EBIN,$(EBINS),-pa $(EBIN)) | ||
|
||
ERLC_OPTS = +debug_info +warn_export_all -I$(ROOT)/core -I$(ROOT)/deps $(PA) | ||
# +bin_opt_info | ||
|
||
DIRS = . \ | ||
$(ROOT)/core/whistle-1.0.0 \ | ||
$(ROOT)/core/whistle_amqp-1.0.0 \ | ||
$(ROOT)/core/whistle_couch-1.0.0 \ | ||
$(ROOT)/corewhistle_apps-1.0.0 | ||
|
||
.PHONY: all compile clean | ||
|
||
all: compile | ||
|
||
MODULES = $(shell ls src/*.erl | sed 's/src\///;s/\.erl/,/' | sed '$$s/.$$//') | ||
CF_MODULES = $(shell ls src/module/*.erl | sed 's/src\/module\///;s/\.erl/,/' | sed '$$s/.$$//') | ||
|
||
compile: ebin/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES),$(CF_MODULES)\]}/' \ | ||
> ebin/$(PROJECT).app | ||
-@$(MAKE) ebin/$(PROJECT).app | ||
|
||
ebin/$(PROJECT).app: src/*.erl src/module/*.erl | ||
@mkdir -p ebin/ | ||
erlc -v $(ERLC_OPTS) -o ebin/ -pa ebin/ $? | ||
|
||
compile-test: test/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES),$(CF_MODULES)\]}/' \ | ||
> test/$(PROJECT).app | ||
-@$(MAKE) test/$(PROJECT).app | ||
|
||
test/$(PROJECT).app: src/*.erl src/module/*.erl | ||
@mkdir -p test/ | ||
erlc -v $(ERLC_OPTS) -o test/ -pa test/ $? | ||
|
||
clean: | ||
rm -f ebin/* | ||
rm -f test/*.beam test/$(PROJECT).app | ||
rm -f erl_crash.dump | ||
|
||
test: clean compile-test eunit | ||
|
||
eunit: compile-test | ||
erl -noshell -pa test -eval "eunit:test([$(MODULES),$(CF_MODULES)], [verbose])" -s init stop | ||
|
||
dialyze: | ||
@$(DIALYZER) $(foreach DIR,$(DIRS),$(DIR)/ebin) \ | ||
--plt $(ROOT)/.platform_dialyzer.plt --no_native \ | ||
-Werror_handling -Wrace_conditions -Wunmatched_returns # -Wunderspecs |
File renamed without changes.
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,14 @@ | ||
{application, callflow, | ||
[ | ||
{description, "Callflow - traversing throught the tree..."} | ||
,{vsn, "0.0.1"} | ||
,{modules, [callflow_app, callflow, callflow_maintenance, callflow_sup, cf_attributes, cf_endpoint, cf_exe, cf_exe_sup, cf_listener, cf_route_req, cf_route_resume, cf_route_win, cf_shared_listener, cf_util, wapi_callflow,cf_acdc_agent, cf_acdc_member, cf_acdc_queue, cf_callflow, cf_call_forward, cf_conference, cf_device, cf_dialplan, cf_directory, cf_disa, cf_do_not_disturb, cf_dynamic_cid, cf_hotdesk, cf_intercom, cf_manual_presence, cf_menu, cf_offnet, cf_page_group, cf_park, cf_pivot, cf_play, cf_prepend_cid, cf_privacy, cf_receive_fax, cf_record_call, cf_resources, cf_response, cf_ring_group, cf_set, cf_temporal_route, cf_user, cf_voicemail]} | ||
,{registered, []} | ||
,{applications, [ | ||
kernel | ||
,stdlib | ||
,crypto | ||
]} | ||
,{mod, { callflow_app, []} } | ||
,{env, []} | ||
]}. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,57 @@ | ||
PROJECT = cdr | ||
ROOT = ../.. | ||
REBAR = $(ROOT)/utils/rebar/rebar | ||
DIALYZER = dialyzer | ||
|
||
EBINS = $(shell find $(ROOT)/core -maxdepth 2 -name ebin -print) $(shell find $(ROOT)/deps -maxdepth 2 -name ebin -print) | ||
PA = $(foreach EBIN,$(EBINS),-pa $(EBIN)) | ||
|
||
ERLC_OPTS = +debug_info +warn_export_all -I$(ROOT)/core -I$(ROOT)/deps $(PA) | ||
# +bin_opt_info | ||
|
||
DIRS = . \ | ||
$(ROOT)/core/whistle-1.0.0 \ | ||
$(ROOT)/core/whistle_amqp-1.0.0 \ | ||
$(ROOT)/core/whistle_couch-1.0.0 \ | ||
$(ROOT)/core/whistle_apps-1.0.0 | ||
|
||
.PHONY: all compile clean | ||
|
||
all: compile | ||
|
||
MODULES = $(shell ls src/*.erl | sed 's/src\///;s/\.erl/,/' | sed '$$s/.$$//') | ||
|
||
compile: ebin/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES)\]}/' \ | ||
> ebin/$(PROJECT).app | ||
-@$(MAKE) ebin/$(PROJECT).app | ||
|
||
ebin/$(PROJECT).app: src/*.erl | ||
@mkdir -p ebin/ | ||
erlc -v $(ERLC_OPTS) -o ebin/ -pa ebin/ $? | ||
|
||
compile-test: test/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES)\]}/' \ | ||
> test/$(PROJECT).app | ||
-@$(MAKE) test/$(PROJECT).app | ||
|
||
test/$(PROJECT).app: src/*.erl | ||
@mkdir -p test/ | ||
erlc -v $(ERLC_OPTS) -o test/ -pa test/ $? | ||
|
||
clean: | ||
rm -f ebin/* | ||
rm -f test/*.beam test/$(PROJECT).app | ||
rm -f erl_crash.dump | ||
|
||
test: clean compile-test eunit | ||
|
||
eunit: compile-test | ||
erl -noshell -pa test -eval "eunit:test([$(MODULES)], [verbose])" -s init stop | ||
|
||
dialyze: | ||
@$(DIALYZER) $(foreach DIR,$(DIRS),$(DIR)/ebin) \ | ||
--plt $(ROOT)/.platform_dialyzer.plt --no_native \ | ||
-Werror_handling -Wrace_conditions -Wunmatched_returns # -Wunderspecs |
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
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,12 @@ | ||
{application, cdr, | ||
[ | ||
{description, "Listen and record CDR events into CouchDB"}, | ||
{vsn, "0.4.1"}, | ||
{registered, []}, | ||
{applications, [ | ||
kernel, | ||
stdlib | ||
]}, | ||
{mod, { cdr_app, []}}, | ||
{env, []} | ||
]}. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,57 @@ | ||
PROJECT = conference | ||
ROOT = ../.. | ||
REBAR = $(ROOT)/utils/rebar/rebar | ||
DIALYZER = dialyzer | ||
|
||
EBINS = $(shell find $(ROOT)/core -maxdepth 2 -name ebin -print) $(shell find $(ROOT)/deps -maxdepth 2 -name ebin -print) | ||
PA = $(foreach EBIN,$(EBINS),-pa $(EBIN)) | ||
|
||
ERLC_OPTS = +debug_info +warn_export_all -I$(ROOT)/core -I$(ROOT)/deps $(PA) | ||
# +bin_opt_info | ||
|
||
DIRS = . \ | ||
$(ROOT)/core/whistle-1.0.0 \ | ||
$(ROOT)/core/whistle_amqp-1.0.0 \ | ||
$(ROOT)/core/whistle_couch-1.0.0 \ | ||
$(ROOT)/core/whistle_apps-1.0.0 | ||
|
||
.PHONY: all compile clean | ||
|
||
all: compile | ||
|
||
MODULES = $(shell ls src/*.erl | sed 's/src\///;s/\.erl/,/' | sed '$$s/.$$//') | ||
|
||
compile: ebin/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES)\]}/' \ | ||
> ebin/$(PROJECT).app | ||
-@$(MAKE) ebin/$(PROJECT).app | ||
|
||
ebin/$(PROJECT).app: src/*.erl | ||
@mkdir -p ebin/ | ||
erlc -v $(ERLC_OPTS) -o ebin/ -pa ebin/ $? | ||
|
||
compile-test: test/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES)\]}/' \ | ||
> test/$(PROJECT).app | ||
-@$(MAKE) test/$(PROJECT).app | ||
|
||
test/$(PROJECT).app: src/*.erl | ||
@mkdir -p test/ | ||
erlc -v $(ERLC_OPTS) -o test/ -pa test/ $? | ||
|
||
clean: | ||
rm -f ebin/* | ||
rm -f test/*.beam test/$(PROJECT).app | ||
rm -f erl_crash.dump | ||
|
||
test: clean compile-test eunit | ||
|
||
eunit: compile-test | ||
erl -noshell -pa test -eval "eunit:test([$(MODULES)], [verbose])" -s init stop | ||
|
||
dialyze: | ||
@$(DIALYZER) $(foreach DIR,$(DIRS),$(DIR)/ebin) \ | ||
--plt $(ROOT)/.platform_dialyzer.plt --no_native \ | ||
-Werror_handling -Wrace_conditions -Wunmatched_returns # -Wunderspecs |
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,13 @@ | ||
{application, conference, | ||
[ | ||
{description, "Conferencing Service Provider"}, | ||
{vsn, "1.0.0"}, | ||
{modules, [conf_discovery, conference_app, conference, conference_maintenance, conference_sup, conf_participant, conf_participant_sup, wapi_conf_participant]}, | ||
{registered, []}, | ||
{applications, [ | ||
kernel, | ||
stdlib | ||
]}, | ||
{mod, { conference_app, []}}, | ||
{env, []} | ||
]}. |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,59 @@ | ||
PROJECT = crossbar | ||
ROOT = ../.. | ||
REBAR = $(ROOT)/utils/rebar/rebar | ||
DIALYZER = dialyzer | ||
|
||
EBINS = $(shell find $(ROOT)/core -maxdepth 2 -name ebin -print) $(shell find $(ROOT)/deps -maxdepth 2 -name ebin -print) | ||
PA = $(foreach EBIN,$(EBINS),-pa $(EBIN)) | ||
|
||
ERLC_OPTS = +debug_info +warn_export_all -I$(ROOT)/core -I$(ROOT)/deps $(PA) | ||
# +bin_opt_info | ||
|
||
DIRS = . \ | ||
$(ROOT)/core/whistle-1.0.0 \ | ||
$(ROOT)/core/whistle_amqp-1.0.0 \ | ||
$(ROOT)/core/whistle_couch-1.0.0 \ | ||
$(ROOT)/core/whistle_apps-1.0.0 | ||
|
||
.PHONY: all compile clean | ||
|
||
all: compile | ||
|
||
MODULES = $(shell ls src/*.erl | sed 's/src\///;s/\.erl/,/' | sed '$$s/.$$//') | ||
CB_MODULES = $(shell ls src/modules/*.erl | sed 's/src\/modules\///;s/\.erl/,/' | sed '$$s/.$$//') | ||
|
||
compile: ebin/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES),$(CB_MODULES)\]}/' \ | ||
> ebin/$(PROJECT).app | ||
-@$(MAKE) ebin/$(PROJECT).app | ||
|
||
ebin/$(PROJECT).app: src/*.erl src/modules/*.erl | ||
@mkdir -p ebin/ | ||
erlc -v $(ERLC_OPTS) -o ebin/ -pa ebin/ $? | ||
|
||
compile-test: test/$(PROJECT).app | ||
@cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES),$(CB_MODULES)\]}/' \ | ||
> test/$(PROJECT).app | ||
-@$(MAKE) test/$(PROJECT).app | ||
|
||
test/$(PROJECT).app: src/*.erl src/modules/*.erl | ||
@mkdir -p test/ | ||
erlc -v $(ERLC_OPTS) -o test/ -pa test/ $? | ||
|
||
clean: | ||
rm -f ebin/* | ||
rm -f test/*.beam test/$(PROJECT).app | ||
rm -f erl_crash.dump | ||
|
||
test: clean compile-test eunit | ||
|
||
eunit: compile-test | ||
erl -noshell -pa test -eval "eunit:test([$(MODULES),$(CB_MODULES)], [verbose])" -s init stop | ||
|
||
dialyze: | ||
@$(DIALYZER) $(foreach DIR,$(DIRS),$(DIR)/ebin) \ | ||
--statistics \ | ||
--plt $(ROOT)/.platform_dialyzer.plt --no_native \ | ||
-Werror_handling -Wrace_conditions -Wunmatched_returns # -Wunderspecs |
File renamed without changes.
File renamed without changes.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.