|
From: falcovorbis <fal...@us...> - 2024-08-19 03:47:08
|
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 63c8b0c0b174af2762fa7f00cb34048bfaa5235b (commit)
from 084658a4859a9e29da6dbaa43f05ba0fceade10f (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 63c8b0c0b174af2762fa7f00cb34048bfaa5235b
Author: Tchan0 <617...@us...>
Date: Mon Aug 19 05:46:43 2024 +0200
Naomi: examples Makefile: exclude network, modem & g1ata (#713)
* Naomi: examples Makefile: exclude modem & g1ata
Exclude examples /modem & /g1ata when building for Naomi, as the corresponding functions do not exist for Naomi
* Naomi: examples Makefile: exclude network
Exclude network examples, as network is also excluded when building KallistiOS for Naomi
-----------------------------------------------------------------------
Summary of changes:
examples/dreamcast/Makefile | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/examples/dreamcast/Makefile b/examples/dreamcast/Makefile
index 8afe9ad9..221b371c 100644
--- a/examples/dreamcast/Makefile
+++ b/examples/dreamcast/Makefile
@@ -5,10 +5,14 @@
# Copyright (C) 2024 Andy Barajas
#
-DIRS = 2ndmix basic libdream kgl hello sound png network vmu conio pvr video \
- lua parallax modem dreameye filesystem sd g1ata lightgun keyboard sdl dev rumble \
+DIRS = 2ndmix basic libdream kgl hello sound png vmu conio pvr video \
+ lua parallax dreameye filesystem sd lightgun keyboard sdl dev rumble \
micropython
+ifneq ($(KOS_SUBARCH), naomi)
+ DIRS += network modem g1ata
+endif
+
ifdef KOS_CCPLUS
DIRS += cpp tsunami
endif
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|