@@ -68,7 +68,7 @@ erlang:
68
68
# Since Mix depends on EEx and EEx depends on
69
69
# Mix, we first compile EEx without the .app
70
70
# file, then mix and then compile EEx fully
71
- elixir : stdlib lib/eex/ebin/Elixir.EEx.beam mix ex_unit eex iex
71
+ elixir : stdlib lib/eex/ebin/Elixir.EEx.beam mix ex_unit logger eex iex
72
72
73
73
stdlib : $(KERNEL ) VERSION
74
74
$(KERNEL ) : lib/elixir/lib/* .ex lib/elixir/lib/* /* .ex lib/elixir/lib/* /* /* .ex
@@ -90,6 +90,7 @@ $(UNICODE): lib/elixir/unicode/*
90
90
$(Q ) cd lib/elixir && ../../$(ELIXIRC ) unicode/unicode.ex -o ebin;
91
91
92
92
$(eval $(call APP_TEMPLATE,ex_unit,ExUnit))
93
+ $(eval $(call APP_TEMPLATE,logger,Logger))
93
94
$(eval $(call APP_TEMPLATE,eex,EEx))
94
95
$(eval $(call APP_TEMPLATE,mix,Mix))
95
96
$(eval $(call APP_TEMPLATE,iex,IEx))
@@ -133,6 +134,7 @@ docs: compile ../ex_doc/bin/ex_doc
133
134
$(call DOCS,Mix,mix,Mix)
134
135
$(call DOCS,IEx,iex,IEx)
135
136
$(call DOCS,ExUnit,ex_unit,ExUnit)
137
+ $(call DOCS,ExUnit,logger,Logger)
136
138
137
139
../ex_doc/bin/ex_doc :
138
140
@ echo " ex_doc is not found in ../ex_doc as expected. See README for more information."
@@ -164,7 +166,7 @@ $(TEST_EBIN)/%.beam: $(TEST_ERL)/%.erl
164
166
$(Q ) mkdir -p $(TEST_EBIN )
165
167
$(Q ) $(ERLC ) -o $(TEST_EBIN ) $<
166
168
167
- test_elixir : test_stdlib test_ex_unit test_doc_test test_mix test_eex test_iex
169
+ test_elixir : test_stdlib test_ex_unit test_logger test_doc_test test_mix test_eex test_iex
168
170
169
171
test_doc_test : compile
170
172
@ echo " ==> doctest (exunit)"
0 commit comments