rem ghcc.bat rem rem Run GHC compiler for single file set LibBase=F:\Haskell\Lib\ set LibList=..\HaskellUtils;%LibBase%HUnit;%LibBase%Parsec;%LibBase%Sort;%LibBase%Dfa ghc --make -fglasgow-exts -i%LibList% -o %1.exe %1 rem use this when GHC -main-is bg is fixed: rem ghc --make -fglasgow-exts -i%LibList% -o %1.exe -main-is %1.main %1