From 44a13479195a591b436d28efada8953b3cff36ba Mon Sep 17 00:00:00 2001 From: Eric Kunze Date: Thu, 12 Aug 2021 11:01:14 -0700 Subject: Add FFT operators to MI/MT profiles Adds FFT2D for complex->complex FFT Adds RFFT2D for real->complex FFT Change-Id: Id50f96b8f66f17c3020767c002f0c1f41a76d62e Signed-off-by: Eric Kunze --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index cbbbe6a..b7cd640 100644 --- a/Makefile +++ b/Makefile @@ -22,23 +22,29 @@ COMMON_ARGS= -a revnumber="$(TOSAREVISION)" SPECSRC := tosa_spec.adoc ADOCFILES = $(wildcard chapters/[A-Za-z]*.adoc) SPECFILES = $(ADOCFILES) tosa.css +FIGURES = $(wildcard figures/*.svg) .DELETE_ON_ERROR: -.PHONY: all html pdf clean spell +.PHONY: all html pdf clean spell copy_html_figures all: spell html pdf -html: $(HTMLDIR)/tosa_spec.html +html: copy_html_figures $(HTMLDIR)/tosa_spec.html pdf: $(PDFDIR)/tosa_spec.pdf clean: $(RM) $(HTMLDIR)/tosa_spec.html + rm -rf $(HTMLDIR)/figures $(RM) $(PDFDIR)/tosa_spec.pdf spell: out/spell.txt +copy_html_figures: $(FIGURES) + $(MKDIR) -p $(HTMLDIR)/figures + cp $(FIGURES) $(HTMLDIR)/figures + .PRECIOUS: out/spell.txt out/spell.txt: $(ADOCFILES) FORCE @echo Running spell check -- cgit v1.2.1