Compiling my Agda code results in a src/MAlonzo
directory being created. (Where src/MyProject
is where my Agda code lives.) It contains a bunch of .hs
(Haskell) and .o
(object) files.
Is there anything in this directory that I should commit, or do people typically add /src/MAlonzo
to their .gitignore
?
I'm asking because I'm surprised that build artifacts are being put in the src
directory instead of the _build
directory. I wonder if there's a reason for that.