X-Git-Url: https://ruin.nu/git/?p=proglang.git;a=blobdiff_plain;f=Makefile;h=b6815c2f1a4339c40837cb76e73659ee345d3bf5;hp=f662112e8f88a49689dd97c0a3f07f7a54dc3a77;hb=HEAD;hpb=2316d61f350f8b39c9a3f76b91d1d14796d5183b diff --git a/Makefile b/Makefile index f662112..b6815c2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: Typechecker Interpreter +all: CompInt doc: Docsyntax.dvi @@ -14,6 +14,12 @@ Typechecker: Typechecker.hs Typecheck.hs Parsyntax.hs Lexsyntax.hs Abssyntax.hs Interpreter: Interpreter.hs Interpret.hs Typecheck.hs Parsyntax.hs Lexsyntax.hs Abssyntax.hs ghc -fglasgow-exts --make Interpreter.hs -o Interpreter +Compiler: Compiler.hs Compile.hs Typecheck.hs Parsyntax.hs Lexsyntax.hs Abssyntax.hs + ghc -fglasgow-exts --make Compiler.hs -o Compiler + +CompInt: CompInt.hs Compile.hs Interpret.hs Typecheck.hs Parsyntax.hs Lexsyntax.hs Abssyntax.hs + ghc -fglasgow-exts --make CompInt.hs -o CompInt + Parsyntax.hs: Parsyntax.y happy -gca -idebug Parsyntax.y