|
@@ -9,8 +9,9 @@ compile(File,Inc,Bin,Opt) ->
|
|
|
BeamFile = erl_to_beam(Bin, File),
|
|
|
Compiled = mad_compile:is_compiled(BeamFile, File),
|
|
|
if Compiled =:= false ->
|
|
|
- io:format("Compiling ~s~n\r", [File]),
|
|
|
Opts1 = ?COMPILE_OPTS(Inc, Bin, Opt),
|
|
|
+% io:format("Compiling ~s Opts ~p~n\r", [File,Opts1]),
|
|
|
+ io:format("Compiling ~s~n\r", [File]),
|
|
|
compile:file(File, Opts1),
|
|
|
ok;
|
|
|
true -> ok end.
|