forked from esl/erlang_ale
-
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.
Fixed a couple of Erlang compile warnings in the process. Note: the build on Mac using cross compilation does not work right now.
- Loading branch information
Showing
6 changed files
with
206 additions
and
56 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,7 @@ ebin/* | |
variables-* | ||
*/temp/* | ||
|
||
dump_excludes | ||
dump_to_pi | ||
sync_excludes | ||
sync_to_pi |
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,160 @@ | ||
# Copyright (c) 2013, Loïc Hoguin <essen@ninenines.eu> | ||
# | ||
# Permission to use, copy, modify, and/or distribute this software for any | ||
# purpose with or without fee is hereby granted, provided that the above | ||
# copyright notice and this permission notice appear in all copies. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
|
||
# Verbosity and tweaks. | ||
|
||
V ?= 0 | ||
|
||
appsrc_verbose_0 = @echo " APP " $(PROJECT).app.src; | ||
appsrc_verbose = $(appsrc_verbose_$(V)) | ||
|
||
erlc_verbose_0 = @echo " ERLC " $(filter-out %.dtl,$(?F)); | ||
erlc_verbose = $(erlc_verbose_$(V)) | ||
|
||
dtl_verbose_0 = @echo " DTL " $(filter %.dtl,$(?F)); | ||
dtl_verbose = $(dtl_verbose_$(V)) | ||
|
||
gen_verbose_0 = @echo " GEN " $@; | ||
gen_verbose = $(gen_verbose_$(V)) | ||
|
||
.PHONY: all clean-all app clean deps clean-deps docs clean-docs \ | ||
build-tests tests build-plt dialyze | ||
|
||
# Deps directory. | ||
|
||
DEPS_DIR ?= $(CURDIR)/deps | ||
export DEPS_DIR | ||
|
||
REBAR_DEPS_DIR = $(DEPS_DIR) | ||
export REBAR_DEPS_DIR | ||
|
||
ALL_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(DEPS)) | ||
ALL_TEST_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(TEST_DEPS)) | ||
|
||
# Application. | ||
|
||
ERLC_OPTS ?= -Werror +debug_info +warn_export_all +warn_export_vars \ | ||
+warn_shadow_vars +warn_obsolete_guard # +bin_opt_info +warn_missing_spec | ||
COMPILE_FIRST ?= | ||
COMPILE_FIRST_PATHS = $(addprefix src/,$(addsuffix .erl,$(COMPILE_FIRST))) | ||
|
||
all: deps app | ||
|
||
clean-all: clean clean-deps clean-docs | ||
$(gen_verbose) rm -rf .$(PROJECT).plt $(DEPS_DIR) logs | ||
|
||
app: ebin/$(PROJECT).app | ||
$(eval MODULES := $(shell find ebin -name \*.beam \ | ||
| sed 's/ebin\///;s/\.beam/,/' | sed '$$s/.$$//')) | ||
$(appsrc_verbose) cat src/$(PROJECT).app.src \ | ||
| sed 's/{modules, \[\]}/{modules, \[$(MODULES)\]}/' \ | ||
> ebin/$(PROJECT).app | ||
|
||
define compile_erl | ||
$(erlc_verbose) ERL_LIBS=deps erlc -v $(ERLC_OPTS) -o ebin/ -pa ebin/ \ | ||
-I include/ $(COMPILE_FIRST_PATHS) $(1) | ||
endef | ||
|
||
define compile_dtl | ||
$(dtl_verbose) erl -noshell -pa ebin/ deps/erlydtl/ebin/ -eval ' \ | ||
Compile = fun(F) -> \ | ||
Module = list_to_atom( \ | ||
string:to_lower(filename:basename(F, ".dtl")) ++ "_dtl"), \ | ||
erlydtl_compiler:compile(F, Module, [{out_dir, "ebin/"}]) \ | ||
end, \ | ||
_ = [Compile(F) || F <- string:tokens("$(1)", " ")], \ | ||
init:stop()' | ||
endef | ||
|
||
ebin/$(PROJECT).app: src/*.erl $(wildcard src/*.core) $(wildcard templates/*.dtl) | ||
@mkdir -p ebin/ | ||
$(if $(strip $(filter-out %.dtl,$?)), \ | ||
$(call compile_erl,$(filter-out %.dtl,$?))) | ||
$(if $(strip $(filter %.dtl,$?)), \ | ||
$(call compile_dtl,$(filter %.dtl,$?))) | ||
|
||
clean: | ||
$(gen_verbose) rm -rf ebin/ test/*.beam erl_crash.dump | ||
|
||
# Dependencies. | ||
|
||
define get_dep | ||
@mkdir -p $(DEPS_DIR) | ||
git clone -n -- $(word 1,$(dep_$(1))) $(DEPS_DIR)/$(1) | ||
cd $(DEPS_DIR)/$(1) ; git checkout -q $(word 2,$(dep_$(1))) | ||
cd $(DEPS_DIR)/$(1) ; if [ -n $(word 3,$(dep_$(1))) ]; then eval $(word 3,$(dep_$(1))); fi | ||
endef | ||
|
||
define dep_target | ||
$(DEPS_DIR)/$(1): | ||
$(call get_dep,$(1)) | ||
endef | ||
|
||
$(foreach dep,$(DEPS),$(eval $(call dep_target,$(dep)))) | ||
|
||
deps: $(ALL_DEPS_DIRS) | ||
@for dep in $(ALL_DEPS_DIRS) ; do $(MAKE) -C $$dep; done | ||
|
||
clean-deps: | ||
@for dep in $(ALL_DEPS_DIRS) ; do $(MAKE) -C $$dep clean; done | ||
|
||
# Documentation. | ||
|
||
docs: clean-docs | ||
$(gen_verbose) erl -noshell \ | ||
-eval 'edoc:application($(PROJECT), ".", []), init:stop().' | ||
|
||
clean-docs: | ||
$(gen_verbose) rm -f doc/*.css doc/*.html doc/*.png doc/edoc-info | ||
|
||
# Tests. | ||
|
||
$(foreach dep,$(TEST_DEPS),$(eval $(call dep_target,$(dep)))) | ||
|
||
build-test-deps: $(ALL_TEST_DEPS_DIRS) | ||
@for dep in $(ALL_TEST_DEPS_DIRS) ; do $(MAKE) -C $$dep; done | ||
|
||
build-tests: build-test-deps | ||
$(gen_verbose) ERL_LIBS=deps erlc -v $(ERLC_OPTS) -o test/ \ | ||
$(wildcard test/*.erl test/*/*.erl) -pa ebin/ | ||
|
||
CT_RUN = ct_run \ | ||
-no_auto_compile \ | ||
-noshell \ | ||
-pa ebin $(DEPS_DIR)/*/ebin \ | ||
-dir test \ | ||
-logdir logs | ||
# -cover test/cover.spec | ||
|
||
CT_SUITES ?= | ||
CT_SUITES_FULL = $(addsuffix _SUITE,$(CT_SUITES)) | ||
|
||
tests: ERLC_OPTS += -DTEST=1 +'{parse_transform, eunit_autoexport}' | ||
tests: clean deps app build-tests | ||
@mkdir -p logs/ | ||
@$(CT_RUN) -suite $(CT_SUITES_FULL) | ||
$(gen_verbose) rm -f test/*.beam | ||
|
||
# Dialyzer. | ||
|
||
PLT_APPS ?= | ||
DIALYZER_OPTS ?= -Werror_handling -Wrace_conditions \ | ||
-Wunmatched_returns # -Wunderspecs | ||
|
||
build-plt: deps app | ||
@dialyzer --build_plt --output_plt .$(PROJECT).plt \ | ||
--apps erts kernel stdlib $(PLT_APPS) $(ALL_DEPS_DIRS) | ||
|
||
dialyze: | ||
@dialyzer --src src --plt .$(PROJECT).plt --no_native $(DIALYZER_OPTS) |
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
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