Added Rakefile and recompiled for testing
This commit is contained in:
parent
1696960fb7
commit
a805ce77a4
17
Rakefile
Normal file
17
Rakefile
Normal 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
|
BIN
ld10-samba.pdf
BIN
ld10-samba.pdf
Binary file not shown.
Loading…
Reference in New Issue
Block a user