From 626c8641e478ecb74533d951476c28b1c693eda4 Mon Sep 17 00:00:00 2001 From: Oleg Broytman Date: Mon, 2 Jan 2023 22:38:34 +0300 Subject: [PATCH] Fix(Makefile): Fix program name and suffixes --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 -- 2.39.2