rem ghcc.bat rem rem Run GHC compiler for single file set LibBase=C:\Dev\Haskell\Lib\ set LibList=..\;%LibBase%HUnit;%LibBase%Parsec 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.%1 %1