aboutsummaryrefslogtreecommitdiff
path: root/main/cocl.icl
diff options
context:
space:
mode:
authorclean2000-02-24 14:13:03 +0000
committerclean2000-02-24 14:13:03 +0000
commit9b06529083179e3b2577e2ffe8c2f4aa5521f1d3 (patch)
tree73502b7762a10c0ef9d68903dd32af0c94fbfc16 /main/cocl.icl
parentTrimmed cocl.prj, changed location executable (diff)
Simplified cocl.icl
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@107 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'main/cocl.icl')
-rw-r--r--main/cocl.icl19
1 files changed, 6 insertions, 13 deletions
diff --git a/main/cocl.icl b/main/cocl.icl
index 15c62b4..53dcbfa 100644
--- a/main/cocl.icl
+++ b/main/cocl.icl
@@ -1,8 +1,10 @@
module cocl
import coclmain
-import StdString
+
import StdEnv
+import frontend
+import code from library "backend_library"
Start :: *World -> *World
Start world
@@ -11,10 +13,7 @@ Start world
testArgs
= [
// main module
-// "Dialog1"
- "t"
-// "typesupport.icl"
-// "EdProject.icl"
+ "t.icl"
// list all types
, "-lat"
// generate readable abc code
@@ -24,15 +23,9 @@ Start world
// 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\\"
+ , "-P", testDir +++ ";" +++ clean20Dir +++ "StdEnv" +++ ";" +++ clean20Dir +++ "IOInterface"
]
testDir
= "e:\\Users\\Ronny\\Develop\\Clean Programs\\"
clean20Dir
- = "e:\\Users\\Ronny\\Develop\\CleanSystem\\2.0\\"
- ideDir
- = clean20Dir +++ "test\\Clean IDE\\"
+ = "e:\\Users\\Ronny\\Develop\\Clean 2.0\\"