1
0
Fork 0

examples/Makefile: Add html example

This commit is contained in:
Xavier Del Campo Romero 2023-09-25 00:18:41 +02:00
parent 70670e129e
commit d9dbad1bc6
Signed by untrusted user: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 7 additions and 1 deletions

View File

@ -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)