From 763041adf7a1f87addcb5069f203396dc896b3f1 Mon Sep 17 00:00:00 2001 From: ronny Date: Wed, 23 Feb 2000 14:55:54 +0000 Subject: Initial import git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@100 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d --- main/cocl.icl | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 main/cocl.icl (limited to 'main/cocl.icl') diff --git a/main/cocl.icl b/main/cocl.icl new file mode 100644 index 0000000..15c62b4 --- /dev/null +++ b/main/cocl.icl @@ -0,0 +1,38 @@ +module cocl + +import coclmain +import StdString +import StdEnv + +Start :: *World -> *World +Start world + = coclMain testArgs world + where + testArgs + = [ + // main module +// "Dialog1" + "t" +// "typesupport.icl" +// "EdProject.icl" + // list all types + , "-lat" + // generate readable abc code + , "-d" + // redirect out + , "-RO", "messages.txt" + // redirect errors + , "-RE", "errors.txt" + // paths + , "-P", clean20Dir +++ "StdEnv" +++ ";" +++ clean20Dir +++ "IOInterface" + // test specific + +++ ";" +++ testDir +// +++ ";" +++ clean20Dir +++ "test\\Clean 2 Compiler Test" +// +++ ";" +++ ideDir +++ ";" +++ ideDir +++ "Windows\\" +++ ";" +++ ideDir +++ "Util\\" + ] + testDir + = "e:\\Users\\Ronny\\Develop\\Clean Programs\\" + clean20Dir + = "e:\\Users\\Ronny\\Develop\\CleanSystem\\2.0\\" + ideDir + = clean20Dir +++ "test\\Clean IDE\\" -- cgit v1.2.3