This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via 0bdb5c9d7c490a7f2d3fb9f8d991e9559bf3e1b3 (commit)
from d2d7863864bec6707bd8d440fbdaa2b90014ba8a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 0bdb5c9d7c490a7f2d3fb9f8d991e9559bf3e1b3
Author: Andy Barajas <and...@gm...>
Date: Mon Sep 23 20:19:02 2024 -0700
Fix example/filesystem Makefile to compile all examples inside folder. (#773)
-----------------------------------------------------------------------
Summary of changes:
examples/dreamcast/filesystem/Makefile | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/examples/dreamcast/filesystem/Makefile b/examples/dreamcast/filesystem/Makefile
index 3233a746..c76766a0 100644
--- a/examples/dreamcast/filesystem/Makefile
+++ b/examples/dreamcast/filesystem/Makefile
@@ -6,11 +6,17 @@
all:
$(KOS_MAKE) -C pty
+ $(KOS_MAKE) -C browse
+ $(KOS_MAKE) -C sd
clean:
$(KOS_MAKE) -C pty clean
+ $(KOS_MAKE) -C browse clean
+ $(KOS_MAKE) -C sd clean
dist:
$(KOS_MAKE) -C pty dist
+ $(KOS_MAKE) -C browse dist
+ $(KOS_MAKE) -C sd dist
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|