Skip to content

Commit a98e12e

Browse files
committed
Merge pull request #4 from inaka/elbrujohalcon.1.the_module
[#1] Initial structure
2 parents d68ebcc + 2d0115d commit a98e12e

File tree

5 files changed

+834
-0
lines changed

5 files changed

+834
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.awconfig
12
.eunit
23
deps
34
*.o
@@ -8,3 +9,8 @@ ebin
89
rel/example_project
910
.concrete/DEV_MODE
1011
.rebar
12+
log*/
13+
config/app.config
14+
.erlang.mk.packages.v2
15+
_rel/
16+
relx

Makefile

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
PROJECT = xref_runner
2+
3+
DEPS = lager sync eper
4+
5+
dep_eper = git git://github.com/massemanet/eper.git 0.90.0
6+
dep_lager = git git://github.com/basho/lager.git 2.1.0
7+
dep_sync = git git://github.com/inaka/sync.git 0.1
8+
9+
DIALYZER_DIRS := ebin/
10+
DIALYZER_OPTS := --verbose --statistics -Werror_handling \
11+
-Wrace_conditions #-Wunmatched_returns
12+
13+
ERLC_OPTS := +'{parse_transform, lager_transform}' +'{lager_truncation_size, 32768}'
14+
ERLC_OPTS += +warn_unused_vars +warn_export_all +warn_shadow_vars +warn_unused_import +warn_unused_function
15+
ERLC_OPTS += +warn_bif_clash +warn_unused_record +warn_deprecated_function +warn_obsolete_guard +strict_validation
16+
ERLC_OPTS += +warn_export_vars +warn_exported_vars +warn_missing_spec +warn_untyped_record +debug_info
17+
18+
include erlang.mk
19+
20+
# Commont Test Config
21+
22+
TEST_ERLC_OPTS += +'{parse_transform, lager_transform}'
23+
CT_SUITES = xref_runner
24+
CT_OPTS = -cover test/xref_runner.coverspec
25+
26+
SHELL_OPTS= -name ${PROJECT}@`hostname` -s sync

0 commit comments

Comments
 (0)