summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cmu-clx-haskell9
-rwxr-xr-xbin/cmu-haskell9
-rw-r--r--bin/magic.scm10
3 files changed, 28 insertions, 0 deletions
diff --git a/bin/cmu-clx-haskell b/bin/cmu-clx-haskell
new file mode 100755
index 0000000..dba0998
--- /dev/null
+++ b/bin/cmu-clx-haskell
@@ -0,0 +1,9 @@
+#!/bin/csh
+#
+# run cmu clx haskell
+
+if (`arch -k` == "sun4c") then
+ $CMUCLBIN -core $HASKELL/bin/sun4c-clx-haskell.core
+else
+ $CMUCLBIN -core $HASKELL/bin/sun4m-clx-haskell.core
+endif
diff --git a/bin/cmu-haskell b/bin/cmu-haskell
new file mode 100755
index 0000000..ff82dfc
--- /dev/null
+++ b/bin/cmu-haskell
@@ -0,0 +1,9 @@
+#!/bin/csh
+#
+# run cmu haskell
+
+if (`arch -k` == "sun4c") then
+ $CMUCLBIN -core $HASKELL/bin/sun4c-haskell.core
+else
+ $CMUCLBIN -core $HASKELL/bin/sun4m-haskell.core
+endif
diff --git a/bin/magic.scm b/bin/magic.scm
new file mode 100644
index 0000000..999e8b0
--- /dev/null
+++ b/bin/magic.scm
@@ -0,0 +1,10 @@
+;;; magic.scm -- magic support file for dumping compiled code files.
+;;;
+;;; author : Sandra Loosemore
+;;; date : 8 Jul 1992
+;;;
+;;; This file is used to dump compiled code files. The macro call below
+;;; expands into the code being dumped. See dump-interface.scm for more
+;;; details.
+
+(magic-form-to-compile)