Hi! well.. after probe many things and read many altera documents, I saw that after full compilation process the report folder apear into <project_folder>/bin/<file_kernel_name>/. But this is a very slow process to prefil the kernel file and know the estimated area ocupation. Then I probed with aoc -c option that creat the Quartus project but without perform the full compilation process, and then voila! the report folder and report file was generated in a very fast and short process. Maybe all of you know this... but I didn't know it hehe!
Resume:
aoc -march=emulator -v --board <board_name> device/<kernel_name>.cl -o bin/<outpu_name>.aocx Compile the kernel for PC simulation
aoc -c -v --board <board_name> device/<kernel_name>.cl -o bin/<output_name>.aoco Generate Quartus project, report file and the <output_name>.aoco
aoc -v --board <board_name> bin/<output_name>.aoco Perform full compilation process and generate the hardware files
I hope this help to someone :), because I lost too many time.
Regards.