From: Oleg Broytman Date: Mon, 2 Jan 2023 19:38:34 +0000 (+0300) Subject: Fix(Makefile): Fix program name and suffixes X-Git-Url: https://git.phdru.name/?p=extfs.d.git;a=commitdiff_plain;h=626c8641e478ecb74533d951476c28b1c693eda4 Fix(Makefile): Fix program name and suffixes --- diff --git a/Makefile b/Makefile index c50423f..05c1a74 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,9 @@ +.SUFFIXES: # Clear the suffix list +.SUFFIXES: .txt .html + + %.html: %.txt - rst2html --stylesheet=/dev/null -- $< >$@ + rst2html.py --stylesheet=/dev/null -- $< >$@ .PHONY: all