diff options
author | ronny | 2000-02-23 14:55:54 +0000 |
---|---|---|
committer | ronny | 2000-02-23 14:55:54 +0000 |
commit | 763041adf7a1f87addcb5069f203396dc896b3f1 (patch) | |
tree | 78472565231b153eebf953f64a73b37be1fcec57 /main/cocl.icl | |
parent | Added backend.dll (diff) |
Initial import
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@100 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'main/cocl.icl')
-rw-r--r-- | main/cocl.icl | 38 |
1 files changed, 38 insertions, 0 deletions
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\\" |