diff options
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) |
