rem ghcc.bat rem rem Run GHC compiler for single file rem rem This value for LibBase access the additional library files rem included with the Swish distributionm kit. set LibBase=.\ 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