Update to clean 3.0
authorMart Lubbers <mart@martlubbers.net>
Thu, 20 Sep 2018 07:30:40 +0000 (09:30 +0200)
committerMart Lubbers <mart@martlubbers.net>
Thu, 20 Sep 2018 07:30:40 +0000 (09:30 +0200)
IRC.icl
Makefile
clean-selectloop
cloogleirc.icl
libcloogle
run.sh

diff --git a/IRC.icl b/IRC.icl
index 48a5800..004a39b 100644 (file)
--- a/IRC.icl
+++ b/IRC.icl
@@ -3,7 +3,7 @@ implementation module IRC
 import StdList, StdTuple, StdOverloaded, StdFunc, StdString, StdChar, StdBool
 import _SystemArray
 
-import GenPrint
+import Text.GenPrint
 import GenIRC
 
 import Control.Applicative
index d6a5ac8..b7fe4b0 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,10 @@
-CLEAN_HOME?=/opt/clean
 CLM:=clm
 
 override CLMFLAGS+=-nt
 
 CLMLIBS:=\
-       -I $(CLEAN_HOME)/lib/Platform\
-       -I $(CLEAN_HOME)/lib/Platform/Deprecated/StdLib\
-       -I $(CLEAN_HOME)/lib/Generics\
-       -I $(CLEAN_HOME)/lib/TCPIP\
-       -I $(CLEAN_HOME)/lib/Dynamics\
+       -IL Platform\
+       -IL TCPIP\
        -I ./libcloogle\
        -I ./clean-selectloop/libraries
 
index 6128cff..8602e4e 160000 (submodule)
@@ -1 +1 @@
-Subproject commit 6128cffb790edf7385770384248cfed73ccd31af
+Subproject commit 8602e4e49d62bca2a52b6ec469d8824dfa398ea0
index 717cfd8..0150704 100644 (file)
@@ -1,6 +1,6 @@
 module cloogleirc
 
-import Cloogle
+import Cloogle.API
 import Text.GenPrint
 import StdEnv
 
index e45bb04..60c8eb3 160000 (submodule)
@@ -1 +1 @@
-Subproject commit e45bb04439cf6d2cfc4c219106c43400f1991d17
+Subproject commit 60c8eb36203bfbac0db3bcb4d0c4d2dbdfa771e9
diff --git a/run.sh b/run.sh
index bf33636..ee3a1a9 100644 (file)
--- a/run.sh
+++ b/run.sh
@@ -2,7 +2,9 @@
 while true
 do
        git pull origin master
-       make
+       git submodule init
+       git submodule update
+       make -B
        ./cloogleirc "$@"
        sleep 5s
 done