diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -14,9 +14,16 @@ render: publish: rsync -avH --delete-after _site/ www-couch@xayide.jones.dk:public_websites/posten.oroe.dk/ +offset: $(wildcard tryk/oroeposten_*_offset.qmd) + quarto render $< + $(MAKE) $(patsubst %.qmd,_site/%_cmyk.pdf,$<) + lint-markdown: @mdl --ignore-front-matter --style .mdl.rb */*.qmd */*/*.qmd +lint-hyphenation: + @grep -Fxvh -f tryk/hyph_ok_danish.txt tryk/*.uhy + $(patsubst %_offset.pdf,%_offset_cmyk.pdf,$(wildcard _site/tryk/*_offset.pdf)):\ %_offset_cmyk.pdf: %_offset.pdf gs -dSAFER -dBATCH -dNOPAUSE \ @@ -30,4 +37,4 @@ $(patsubst %_offset.pdf,%_offset_cmyk.pdf,$(wildcard _site/tryk/*_offset.pdf)):\ -sDefaultCMYKProfile=/usr/share/color/icc/PSO_Uncoated_ISO12647_eci.icc \ $< -.PHONY: all preview render publish lint-markdown +.PHONY: all preview render publish offset lint-markdown lint-hyphenation |