summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2026-02-10 00:13:05 +0100
committerEugen Wissner <belka@caraus.de>2026-02-10 00:13:05 +0100
commit2061fece3dc46f745cc983935ae930ce84092dfa (patch)
treee759b5cbe8f091433a77953f90627d965852a433 /Rakefile
parente9bcd234e5256be30774369f13c07b38a5e97a82 (diff)
downloadelna-2061fece3dc46f745cc983935ae930ce84092dfa.tar.gz
Migrate documentation to LaTeX
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Rakefile b/Rakefile
index d12b9a7..69a36c6 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,16 +4,13 @@
# frozen_string_literal: true
require 'open3'
-require 'pathname'
require 'rake/clean'
-require 'asciidoctor-pdf'
STAGES = Dir.glob('boot/stage*')
.collect { |stage| File.basename stage }
.sort { |a, b| a.delete_prefix('stage').to_i <=> b.delete_prefix('stage').to_i }
.drop(1) # First assembly stage does not count.
-CLEAN.include 'doc/*.pdf'
CLOBBER.include 'build'
def run(exe)
@@ -49,10 +46,3 @@ task :convert do
end
end
end
-
-rule '.pdf' => '.adoc' do |t|
- Asciidoctor.convert_file t.source, backend: 'pdf', safe: :safe
-end
-
-desc 'Generate documentation'
-task doc: 'doc/language.pdf'