X-Git-Url: http://git.megacz.com/?p=coq-hetmet.git;a=blobdiff_plain;f=examples%2FMakefile;h=4e47c6e2a1f340d1d9984a7d94de4af76fbd1349;hp=e411f3205201e901dc01031edabdedd4848b907d;hb=ec996e8cb550676d89d187061db7d018af9ec88d;hpb=14afe39e905be69eabd8944b97bb2b731bf44939 diff --git a/examples/Makefile b/examples/Makefile index e411f32..4e47c6e 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,12 +1,49 @@ -all: - ../../../inplace/bin/ghc-stage2 -dcore-lint -fforce-recomp -fcoqpass -ddump-coqpass -ddump-to-file \ - `ls *.hs | grep -v Regex | grep -v Unify.hs | grep -v GArrowTikZ.hs ` +RTS -K500M - ../../../inplace/bin/ghc-stage2 -dcore-lint -fforce-recomp \ - RegexMatcher.hs Unify.hs GArrowTikZ.hs +# -fwarn-incomplete-patterns -tikz: +ghc = ../../../inplace/bin/ghc-stage2 +#ghc = ghc +ghc_opt := -Werror -odir .build -hidir .build + +open: + make demo + open .build/test.pdf + +#sanity += BiGArrow.hs +sanity += IFLDemos.hs +sanity += CircuitExample.hs +sanity += CommandSyntaxExample.hs +sanity += DotProduct.hs +sanity += GArrowTutorial.hs +sanity += GArrowVerilog.hs +sanity += ImmutableHeap.hs +sanity += IsomorphismForCodeTypes.hs +sanity += LambdaCalculusInterpreter.hs +sanity += TypeSafeRun.hs +#sanity += Unflattening.hs + +sanity_opts = -dcore-lint -fforce-recomp -fcoqpass -ddump-coqpass -ddump-to-file +sanity_opts += -fsimpleopt-before-flatten +sanity_opts += -odir .build -hidir .build + +sanity: + for A in $(sanity); do echo; echo; $(ghc) $(sanity_opts) $$A +RTS -K500M || exit -1; done + +demo-pretty: + $(ghc) $(ghc_opt) -main-is GArrowPretty GArrowPretty.hs -o GArrowPretty + +demo-v: + $(ghc) $(ghc_opt) -main-is GArrowVerilog GArrowVerilog.hs -o GArrowVerilog + ./GArrowVerilog + +demo-verilog: + $(ghc) $(sanity_opts) -c VerilogDemo.hs + $(ghc) $(ghc_opt) -main-is GArrowVerilog GArrowVerilog.hs -o GArrowVerilog + ./GArrowVerilog + +demo: mkdir -p .build - ../../../inplace/bin/ghc-stage2 -odir .build -hidir .build GArrowTikZ.hs Unify.hs Demo.hs -o .build/demo + $(ghc) $(ghc_opt) -c Demo.hs -fforce-recomp + $(ghc) $(ghc_opt) --show-iface .build/Demo.hi + $(ghc) $(ghc_opt) GArrowTikZ.hs Demo.hs DemoMain.hs Unify.hs -o .build/demo ./.build/demo > .build/test.tex - cd .build; pdflatex test.tex - open .build/test.pdf + cd .build; TEXINPUTS=../tex-bits/:$TEXINPUTS: pdflatex test.tex