From efa9f5a2da5db7940ec59bc3ef13749fd0ff31d2 Mon Sep 17 00:00:00 2001 From: Steve Arnold Date: Wed, 24 Jan 2024 21:03:52 -0800 Subject: [PATCH] fix: user: still more cleanup in draft template and makefile Signed-off-by: Steve Arnold --- svd/EU_SVD.rst | 4 ++-- svd/Makefile | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/svd/EU_SVD.rst b/svd/EU_SVD.rst index 164c9bd..88073f3 100644 --- a/svd/EU_SVD.rst +++ b/svd/EU_SVD.rst @@ -36,7 +36,7 @@ .. class:: title-info -Doc #00001042 +Doc #00001043 .. class:: title-info @@ -44,7 +44,7 @@ Version 0.1 .. class:: title-info -01/31/23 +01/24/24 | | diff --git a/svd/Makefile b/svd/Makefile index 8315e0d..d4dcbac 100644 --- a/svd/Makefile +++ b/svd/Makefile @@ -1,15 +1,15 @@ # document build target (see corresponding .rst source file) -SUM = EU_SUM.pdf +SVD = EU_SVD.pdf # just one pdf doc target for now -DOCS = $(SUM) +DOCS = $(SVD) # figure generation engine; can use other layouts/drivers DOT = dot # input files DOTSRC := $(wildcard images/*.dot) -SUMSRC = EU_SUM.rst +SVDSRC = EU_SVD.rst #DOCTYPE = pdf # set this to the output image format to include in the doc target @@ -19,12 +19,12 @@ FIGTYPE = svg FIGS := $(DOTSRC:.dot=.$(FIGTYPE)) # input files for DOC target -SOURCES_MK := $(SUMSRC) $(FIGS) +SOURCES_MK := $(SVDSRC) $(FIGS) # stuff to clean GENFILES := $(FIGS) DOTFLAGS = -T$(FIGTYPE) -RSTFLAGS = -s styles/sum.yaml +RSTFLAGS = -s styles/svd.yaml DOT_OFLAG = -o PDF_OFLAG = -o @@ -37,7 +37,7 @@ images/%.$(FIGTYPE) : images/%.dot $(DOT) $< $(DOT_OFLAG) $@ $(DOTFLAGS) # build the pdf output -$(SUM) : $(SUMSRC) +$(SVD) : $(SVDSRC) rst2pdf $< $(RSTFLAGS) $(PDF_OFLAG) $@ all : $(DOCS)