Added Rakefile and recompiled for testing

This commit is contained in:
Emiliano Vavassori 2010-09-09 02:57:35 +02:00
parent 1696960fb7
commit a805ce77a4
2 changed files with 17 additions and 0 deletions

17
Rakefile Normal file
View File

@ -0,0 +1,17 @@
require 'rake/clean'
src = 'ld10-samba.tex'
bin = 'ld10-samba.pdf'
tmp = FileList.new('*.aux', '*.log', '*.nav', '*.out', '*.snm', '*.toc')
CLEAN.add(tmp)
CLOBBER.add(bin)
task :default => :compile
desc "Compile presentation"
task :compile => bin
file bin => src do
sh "xelatex #{src}; xelatex #{src}"
end

Binary file not shown.