aboutsummaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorBill Traynor <wmat@riscv.org>2023-04-05 11:33:26 -0400
committerBill Traynor <wmat@riscv.org>2023-04-05 11:33:26 -0400
commit1d1b70e1005a169f9ac228d6eeadecd2c6898074 (patch)
tree132bd16897729e5248662ad5c70ec86ff0d53c24 /build
parentee11b2504f1781808690bcd4dae56349b845229b (diff)
downloadriscv-isa-manual-1d1b70e1005a169f9ac228d6eeadecd2c6898074.zip
riscv-isa-manual-1d1b70e1005a169f9ac228d6eeadecd2c6898074.tar.gz
riscv-isa-manual-1d1b70e1005a169f9ac228d6eeadecd2c6898074.tar.bz2
Removing unneeded individual makefiles.
Given that we can build all of the targets from one Makefile now, these two doc specific makefiles are no longer needed.
Diffstat (limited to 'build')
-rw-r--r--build/priv.mk22
-rw-r--r--build/unpriv.mk22
2 files changed, 0 insertions, 44 deletions
diff --git a/build/priv.mk b/build/priv.mk
deleted file mode 100644
index f287023..0000000
--- a/build/priv.mk
+++ /dev/null
@@ -1,22 +0,0 @@
-HEADER_SOURCE := ../src/riscv-privileged.adoc
-#HEADER_SOURCE := ../src/riscv-isa-unpr-conv-review.adoc
-PDF_RESULT := priv-isa-asciidoc.pdf
-#PDF_RESULT := unpriv-isa-asciidoc.pdf
-# Not all document sources are yet listed here. Not just adoc files but
-# images/ and resources/ content. Once they are the target can remove the
-# phony use.
-SOURCES := $(HEADER_SOURCE)
-
-all: $(PDF_RESULT)
-
-.PHONY: $(PDF_RESULT)
-$(PDF_RESULT): $(SOURCES)
- asciidoctor-pdf \
- --attribute=mathematical-format=svg \
- --failure-level=ERROR \
- --require=asciidoctor-bibtex \
- --require=asciidoctor-diagram \
- --require=asciidoctor-mathematical \
- --trace \
- --out-file=$@ \
- $(HEADER_SOURCE) \ No newline at end of file
diff --git a/build/unpriv.mk b/build/unpriv.mk
deleted file mode 100644
index aa7158d..0000000
--- a/build/unpriv.mk
+++ /dev/null
@@ -1,22 +0,0 @@
-#HEADER_SOURCE := ../src/riscv-privileged.adoc
-HEADER_SOURCE := ../src/riscv-isa-unpr-conv-review.adoc
-#PDF_RESULT := priv-isa-asciidoc.pdf
-PDF_RESULT := unpriv-isa-asciidoc.pdf
-# Not all document sources are yet listed here. Not just adoc files but
-# images/ and resources/ content. Once they are the target can remove the
-# phony use.
-SOURCES := $(HEADER_SOURCE)
-
-all: $(PDF_RESULT)
-
-.PHONY: $(PDF_RESULT)
-$(PDF_RESULT): $(SOURCES)
- asciidoctor-pdf \
- --attribute=mathematical-format=svg \
- --failure-level=ERROR \
- --require=asciidoctor-bibtex \
- --require=asciidoctor-diagram \
- --require=asciidoctor-mathematical \
- --trace \
- --out-file=$@ \
- $(HEADER_SOURCE) \ No newline at end of file