recipe  :all			, 'result.html'

recipe	'result.html'		, 'border1.rb', 'border1.view'		do |r|
	cmd 'ruby border1.rb > result.html'
	end

recipe	'border1.view'		, 'border1.html', 'border1.plogic'	do |r|
	cmd 'kwartz -l eruby -p border1.plogic border1.html > border1.view'
	end

recipe	:clear								do |r|
	remove_rf 'result.html', 'border1.view'
	end

recipe  :default		, :all

