modernized parser in EmbedAPI

This commit is contained in:
aarne
2007-09-05 14:05:42 +00:00
parent e2b9657f79
commit d2a5148708
15 changed files with 335 additions and 87 deletions

View File

@@ -0,0 +1,18 @@
all: gf hs run
gf:
echo "pm | wf math.gfcm" | gf MathEng.gf MathFre.gf
hs: gf
echo "pg -printer=haskell | wf haskell/GSyntax.hs" | gf math.gfcm
run: hs
ghc --make -o ./math -ihaskell haskell/Run.hs
strip math
clean:
rm -f *.gfc *.gfr haskell/*.o haskell/*.hi
distclean:
rm -f GSyntax.hs math math.gfcm *.gfc *.gfr haskell/*.o haskell/*.hi