diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-09-25 00:18:41 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-09-25 00:18:41 +0200 |
| commit | d9dbad1bc63e0b2442ff81f8e839391a7e27c583 (patch) | |
| tree | 0b4c91a91616fe7e9fc6a19a188ac69a4862edd7 /examples | |
| parent | 70670e129ef09acfb28be013d06f2773b5a7d04d (diff) | |
examples/Makefile: Add html example
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
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) |
