From d9dbad1bc63e0b2442ff81f8e839391a7e27c583 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Mon, 25 Sep 2023 00:18:41 +0200 Subject: [PATCH] examples/Makefile: Add html example --- examples/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/examples/Makefile b/examples/Makefile index 4fdbb46..b26a13a 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,11 +1,17 @@ .POSIX: -all: hello +all: \ + hello \ + html clean: +cd hello && $(MAKE) clean + +cd html && $(MAKE) clean FORCE: hello: FORCE +cd hello && $(MAKE) + +html: FORCE + +cd html && $(MAKE)