]> ruin.nu Git - proglang.git/blobdiff - Makefile
initial commit of interpreter
[proglang.git] / Makefile
index cd6c0826fe51507d9d2868ab83f838d262a1d9d1..f662112e8f88a49689dd97c0a3f07f7a54dc3a77 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-all: Typechecker
+all: Typechecker Interpreter
 
 doc: Docsyntax.dvi
 
@@ -11,6 +11,9 @@ Testsyntax: Testsyntax.hs  Parsyntax.hs Lexsyntax.hs Abssyntax.hs
 Typechecker: Typechecker.hs  Typecheck.hs Parsyntax.hs Lexsyntax.hs Abssyntax.hs
        ghc -fglasgow-exts --make Typechecker.hs -o Typechecker
 
+Interpreter: Interpreter.hs Interpret.hs Typecheck.hs Parsyntax.hs Lexsyntax.hs Abssyntax.hs
+       ghc -fglasgow-exts --make Interpreter.hs -o Interpreter
+
 Parsyntax.hs: Parsyntax.y
        happy -gca -idebug Parsyntax.y