root/lang/haskell/blosxkel/Rakefile @ 1153

Revision 1152, 258 bytes (checked in by jknaoya, 6 years ago)

lang/haskell/blosxkel,
lang/haskell/blosxkel/Rakefile,
lang/haskell/blosxkel/story.html,
lang/haskell/blosxkel/head.html,
lang/haskell/blosxkel/foot.html,
lang/haskell/blosxkel/content_type.html:

Haskell でつくった blosxom クローンのつくりかけです。

Line 
1
2require "rake"
3require "rake/clean"
4
5CLEAN.include ["*.hi", "*.o", "*.cgi"]
6
7task :default => "test"
8
9task :test => ["blosxkel.cgi"] do
10        sh %{./blosxkel.cgi}
11end
12
13file "blosxkel.cgi" => ["blosxkel.hs"] do |t|
14        sh %{ghc --make -o #{t.name} blosxkel.hs }
15end
Note: See TracBrowser for help on using the browser.