forked from ndmitchell/tagsoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmds.bat
45 lines (34 loc) · 899 Bytes
/
cmds.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
@echo off
if "%1"=="" goto none
goto %1
:benchmark
ghc --make Main -odir obj\o -hidir obj\o -O -o tagsoup_o.exe
tagsoup_o.exe bench
tagsoup_o.exe benchfile ketil.xml
goto end
:profile
ghc --make Main -odir obj\p -hidir obj\p -O -o -prof -auto-all tagsoup_p.exe
del tagsoup_p_*.prof
tagsoup_p.exe bench +RTS -p
ren tagsoup_p.prof tagsoup_p_time.prof
tagsoup_p.exe benchfile ketil.xml +RTS -p
ren tagsoup_p.prof tagsoup_p_ketil.prof
goto end
:dump
ghc --make Main -odir obj\o -hidir obj\o -O -o tagsoup_o.exe
call %0 core Text\StringLike.hs stringlike
call %0 core Text\HTML\TagSoup\Parser2.hs parser
call %0 core Text\ParserCombinators\LazyParse.hs lazyparse
goto end
:core
shift
copy %1 obj\o\%1
pushd obj\o
ghc %1 -ddump-simpl -c > ..\..\%2.core
popd
goto end
:none
echo Enter command, try one of:
echo benchmark, profile, dump
goto end
:end