tweaking...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2021-08-12 11:24:18 +03:00
parent dce260a583
commit 09e9dc7e34

View File

@ -1,7 +1,9 @@
#---------------------------------------------------------------------- #----------------------------------------------------------------------
TEX := lualatex ARGS :=
TEX := lualatex $(ARGS)
@ -41,10 +43,11 @@ texToDoc = \
$(TEX) $< > /dev/null $(TEX) $< > /dev/null
# NOTE: .sty and .cls are essentially the same in terms of documentation
# generation...
%.tex: %.sty %.tex: %.sty
$(call texToDoc,$<,$@) $(call texToDoc,$<,$@)
%.tex: %.cls %.tex: %.cls
$(call texToDoc,$<,$@) $(call texToDoc,$<,$@)