aboutsummaryrefslogtreecommitdiff
path: root/src/lux.clj
diff options
context:
space:
mode:
authorEduardo Julian2015-10-04 19:59:22 -0400
committerEduardo Julian2015-10-04 19:59:22 -0400
commit72d9dc02b2a6978ff0905843019bc563e4db8767 (patch)
tree5fea1a7aac28ebd9f9d74e6dd7846c1cae4f9db9 /src/lux.clj
parent171b856f378e09e8e5e6dd3528c404eb9cf9560e (diff)
- Removed the Lux source from the repo, as it now belongs to the lux/stdlib package.
- Removed de Apacke Commons Compress library, as Lux libraries will now be packaged as .jar files instead of as .tar.gz files. - The compiler no longer packages libraries, as that task will now be left for the build system.
Diffstat (limited to '')
-rw-r--r--src/lux.clj5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lux.clj b/src/lux.clj
index 4b1c15ef7..eb8729053 100644
--- a/src/lux.clj
+++ b/src/lux.clj
@@ -8,7 +8,6 @@
(:require [lux.base :as & :refer [|let |do return fail return* fail* |case]]
[lux.compiler.base :as &compiler-base]
[lux.compiler :as &compiler]
- [lux.packager.lib :as &lib]
:reload-all)
(:import (java.io File)))
@@ -19,9 +18,6 @@
(time (&compiler/compile-program program-module))
(println "Please provide a module name to compile."))
- (&/$Cons "lib" (&/$Cons lib-module (&/$Nil)))
- (&lib/package lib-module (new File &compiler-base/input-dir))
-
_
(println "Can't understand command."))
(System/exit 0)
@@ -29,5 +25,4 @@
(comment
(-main "compile" "program")
- (-main "lib" "lux")
)