summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@plataformatec.com.br>2017-02-23 12:17:26 +0100
committerJosé Valim <jose.valim@plataformatec.com.br>2017-02-23 13:15:26 +0100
commit9ba49d2347e8a41e228d067ac578435685b6904e (patch)
tree905389a050cc196f9c0cbde88f929264f8517dee /Makefile
parent263057e11e7bbe36f2091df7600ef8d3d87d1cff (diff)
downloadelixir-9ba49d2347e8a41e228d067ac578435685b6904e.tar.gz
Start refactoring on elixir_compiler
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ad39d7dc9..73794fd89 100644
--- a/Makefile
+++ b/Makefile
@@ -77,7 +77,7 @@ stdlib: $(KERNEL) VERSION
$(KERNEL): lib/elixir/lib/*.ex lib/elixir/lib/*/*.ex lib/elixir/lib/*/*/*.ex
$(Q) if [ ! -f $(KERNEL) ]; then \
echo "==> bootstrap (compile)"; \
- $(ERL) -s elixir_compiler core -s erlang halt; \
+ $(ERL) -s elixir_compiler bootstrap -s erlang halt; \
fi
@ echo "==> elixir (compile)";
$(Q) cd lib/elixir && ../../$(ELIXIRC) "lib/kernel.ex" -o ebin;