Enzyme with Fortran

@lpaehler, regarding this:

I think you are using Flang in there.

We can also use LFortran. To get LLVM out of it, one can do:

lfortran --show-llvm some_file.f90 > some_file.ll

Then you work on the LLVM as you do, and then you compile to object file (some_file.o) using LLVM tools and link it:

lfortran -o executable some_file.o

What are your ideas to simplify this workflow?