mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 03:32:29 +00:00 
			
		
		
		
	Images now included relative to the `docs/source` folder instead of the rst file. Also makes sure to add the updated `yosyshq.css` (which as a sidenote has ended up as `custom.css` in most of the other docs).
		
			
				
	
	
		
			61 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| all: resources dots tex svg tidy
 | |
| 
 | |
| RES_LIST:= PRESENTATION_Intro/ PRESENTATION_ExSyn/ PRESENTATION_ExAdv/ PRESENTATION_ExOth/
 | |
| RES_DIRS:= $(addprefix ../resources/,$(RES_LIST))
 | |
| .PHONY: resources
 | |
| resources: $(RES_DIRS)
 | |
| FORCE:
 | |
| ../resources/%: FORCE
 | |
| 	@$(MAKE) -C $@
 | |
| 	@mkdir -p res/$*
 | |
| 	@cp --update -t res/$* $@*.dot
 | |
| 
 | |
| TEX_SOURCE:= $(wildcard *.tex)
 | |
| DOT_LOC:= ../source/APPNOTE_011_Design_Investigation
 | |
| DOT_SOURCE:= $(wildcard $(DOT_LOC)/*.dot)
 | |
| 
 | |
| RES_DOTS:= $(wildcard res/*/*.dot)
 | |
| RES_DIRS:= $(sort $(dir $(RES_DOTS)))
 | |
| RES_PDF:= $(RES_DOTS:%.dot=%.pdf)
 | |
| 
 | |
| TEX_SOURCE+= 011/example_out.tex
 | |
| 011/example_out.pdf: 011/example_00.pdf 011/example_01.pdf 011/example_02.pdf
 | |
| TEX_SOURCE+= 011/select_prod.tex
 | |
| 011/select_prod.pdf: 011/sumprod_02.pdf 011/sumprod_03.pdf 011/sumprod_04.pdf 011/sumprod_05.pdf
 | |
| TEX_SOURCE+= 011/splitnets_libfile.tex
 | |
| 011/splitnets_libfile.pdf: 011/cmos_00.pdf 011/cmos_01.pdf
 | |
| TEX_SOURCE+= 011/submod_dots.tex
 | |
| 011/submod_dots.pdf: 011/submod_00.pdf 011/submod_01.pdf 011/submod_02.pdf 011/submod_03.pdf
 | |
| 
 | |
| TEX_PDF:= $(patsubst %.tex,%.pdf,$(TEX_SOURCE))
 | |
| DOT_PDF:= $(addprefix 011/,$(notdir $(patsubst %.dot,%.pdf,$(DOT_SOURCE))))
 | |
| SVG_OUTPUT:= $(patsubst %.pdf,%.svg,$(TEX_PDF) $(DOT_PDF) $(RES_PDF))
 | |
| 
 | |
| dots: $(DOT_PDF) $(RES_PDF)
 | |
| tex: $(TEX_PDF)
 | |
| svg: $(SVG_OUTPUT)
 | |
| 
 | |
| 011/%.pdf: $(DOT_LOC)/%.dot
 | |
| 	faketime -f '2022-01-01 00:00:00 x0,001' dot -Tpdf -o $@ $<
 | |
| 
 | |
| res/%.pdf: res/%.dot
 | |
| 	faketime -f '2022-01-01 00:00:00 x0,001' dot -Tpdf -o $@ $<
 | |
| 
 | |
| 011/%.pdf: 011/%.tex
 | |
| 	cd 011 && faketime -f '2022-01-01 00:00:00 x0,001' pdflatex $(<F) --interaction=nonstopmode
 | |
| 
 | |
| %.pdf: %.tex
 | |
| 	pdflatex $< --interaction=nonstopmode
 | |
| 
 | |
| %.svg: %.pdf
 | |
| 	pdf2svg $< $@
 | |
| 
 | |
| .PHONY: clean tidy
 | |
| tidy:
 | |
| 	rm -f *.log
 | |
| 	rm -f *.aux
 | |
| 	rm -f  011/*.log 011/*.aux
 | |
| clean: tidy
 | |
| 	rm -f *.pdf
 | |
| 	rm -f *.svg
 | |
| 	rm -f 011/*.pdf 011/*.svg
 |