I created some files from a project in Unix, they are a lot and if I want to execute it in another pc or folder I need to copy all files to there. They are all connected in import. How can I make an executable haskell program?
I have per example:
main.hs - main where all the program executes; using,besides haskell, unix shell.
ex1.hs - basically types of data, some functions.
ex2.lhs - same as ex1.lhs but is literate with LaTeX
pic.jpg - picture to use on the pdflatex
package.sty - package needed to use some functions
How do I proceed and compile all of these? I tried using ghc but always giving errors:
>ghc -o MAIN main.hs ex1.hs ex2.lhs pic.jpg package.sty
Failed to load interface for 'ex1.hs'
And is in the line which has import ex1.hs
Curious is if I trade import ex1.hs to import ex2.lhs line will give error on ex2
.jpg- or.sty-file to be compiled? Should it be embedded into the executable? – dflemstr Jan 20 at 0:02