|
@@ -256,11 +256,16 @@ define makedep.erl
|
|
|
string:join(DirSubname ++ [atom_to_list(Target)], "/")
|
|
|
end
|
|
|
end,
|
|
|
- ok = file:write_file("$(1)", unicode:characters_to_binary([
|
|
|
+ Output0 = [
|
|
|
"# Generated by Erlang.mk. Edit at your own risk!\n\n",
|
|
|
[[F, "::", [[" ", D] || D <- Deps], "; @touch \$$@\n"] || {F, Deps} <- Depend],
|
|
|
"\nCOMPILE_FIRST +=", [[" ", TargetPath(CF)] || CF <- CompileFirst], "\n"
|
|
|
- ])),
|
|
|
+ ],
|
|
|
+ Output = case "é" of
|
|
|
+ [233] -> unicode:characters_to_binary(Output0);
|
|
|
+ _ -> Output0
|
|
|
+ end,
|
|
|
+ ok = file:write_file("$(1)", Output),
|
|
|
halt()
|
|
|
endef
|
|
|
|