Hello. I&#39;m adding Haskell support to the CMake and stumbled with this problem:<br>CMAKE_Haskell_COMPILE_OBJECT rule produces two files (.o itself and .hi interface file used by haskell compiler). when i run `make clean`, all .o&#39;s are deleted, but .hi&#39;s aren&#39;t. I&#39;ve found these lines in cmake_clean.cmake:<br>

<br># Per-language clean rules from dependency scanning.<br>FOREACH(lang Haskell)<br>  INCLUDE(CMakeFiles/dir_test.dir/cmake_clean_${lang}.cmake OPTIONAL)<br>ENDFOREACH(lang)<br><br>Can you provide me information on how to create this cmake_clean_${lang}.cmake file?<br>

<br>Please CC me, since i&#39;m not subscribed to the list.<br>