diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | compile.c | 2 | ||||
-rw-r--r-- | iclean.icl | 2 |
3 files changed, 2 insertions, 3 deletions
@@ -2,7 +2,6 @@ CFLAGS=-std=c99 -Wall -O0 -c CLM=clm CLMFLAGS=\ -I $$CLEAN_HOME/lib/Platform\ - -I $$CLEAN_HOME/lib/Generics\ -I CleanReadLine\ -l -lreadline\ -l compile.o\ @@ -72,12 +72,12 @@ int64_t compile(CleanString path, CleanString module) { "-I $CLEAN_HOME/lib/Directory " "-I $CLEAN_HOME/lib/Dynamics -dynamics " "-I $CLEAN_HOME/lib/Gast " - "-I $CLEAN_HOME/lib/Generics " "-I $CLEAN_HOME/lib/GraphCopy " "-I $CLEAN_HOME/lib/Platform " "-I $CLEAN_HOME/lib/Platform/Deprecated/ArgEnv " "-I $CLEAN_HOME/lib/Platform/Deprecated/MersenneTwister " "-I $CLEAN_HOME/lib/Platform/Deprecated/StdLib " + "-I $CLEAN_HOME/lib/Platform/Deprecated/Generics " "-I $CLEAN_HOME/lib/Local " "-b -nt -h 20M %s -o %s", pathchars, modulechars, modulechars); @@ -38,7 +38,7 @@ import ExtraString temp_path :== "/tmp/" temp_module :== "iclean" readline_history :== "/home/.iclean_history" -template :== map ((+++) "import ") ["StdEnv", "StdDynamic", "GenPrint"] +template :== map ((+++) "import ") ["StdEnv", "StdDynamic", "Data.Generics.GenPrint"] template_file :== "/home/.iclean_template" // END SETTINGS |