GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: A binding between erlang and mzscheme.
Clone URL: git://github.com/KirinDave/erlenmeyer.git
KirinDave (author)
Wed Feb 27 22:04:57 -0800 2008
commit  45878b3c8af8a50464c35cb232d873e2c70d5551
tree    d85d7f106c4b3b5d739bbba05660e9f09cde5923
parent  19dc20acd6722507cc5b48a636c3a554c6979dcc
erlenmeyer / Rakefile
100644 15 lines (12 sloc) 0.244 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'rake'
 
task :default do
  sh "mzc -z -d lib/ src/*.scm"
end
 
task :console do
  puts "Erlenmeyer Console - All Modules Loaded\n"
  exec "mzscheme -m -S ./lib/ -t lib/*.zo"
end
 
task :clean do
  sh "git clean -xf"
end