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 1b08ce456b0f33324221ff1ea691f7ef2068d357 (commit)
from 0f3b4d559a693ff6144272bf75bd98f09a849be5 (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 1b08ce456b0f33324221ff1ea691f7ef2068d357
Author: Falco Girgis <gyr...@gm...>
Date: Sun Sep 10 13:39:56 2023 -0500
Added Makefile for YUV PVR demos (#299)
* Added Makefile for YUV PVR demos
- Looks like we forgot to make a directory-level Makefile for the new
YUV PVR examples
- Added directory-level Makefile to top-level PVR example Makefile
* Apply suggestions from code review
-----------------------------------------------------------------------
Summary of changes:
examples/dreamcast/pvr/Makefile | 5 ++++-
examples/dreamcast/pvr/yuv_converter/Makefile | 17 +++++++++++++++++
2 files changed, 21 insertions(+), 1 deletion(-)
create mode 100644 examples/dreamcast/pvr/yuv_converter/Makefile
diff --git a/examples/dreamcast/pvr/Makefile b/examples/dreamcast/pvr/Makefile
index ea69a20..24812cf 100644
--- a/examples/dreamcast/pvr/Makefile
+++ b/examples/dreamcast/pvr/Makefile
@@ -1,7 +1,7 @@
# KallistiOS ##version##
#
# examples/dreamcast/pvr/Makefile
-# (c)2002 Megan Potter
+# Copyright (C) 2002 Megan Potter
#
all:
@@ -14,6 +14,7 @@ all:
$(KOS_MAKE) -C modifier_volume_tex
$(KOS_MAKE) -C cheap_shadow
$(KOS_MAKE) -C bumpmap
+ $(KOS_MAKE) -C yuv_converter
clean:
$(KOS_MAKE) -C plasma clean
@@ -25,6 +26,7 @@ clean:
$(KOS_MAKE) -C modifier_volume_tex clean
$(KOS_MAKE) -C cheap_shadow clean
$(KOS_MAKE) -C bumpmap clean
+ $(KOS_MAKE) -C yuv_converter clean
dist:
$(KOS_MAKE) -C plasma dist
@@ -36,3 +38,4 @@ dist:
$(KOS_MAKE) -C modifier_volume_tex dist
$(KOS_MAKE) -C cheap_shadow dist
$(KOS_MAKE) -C bumpmap dist
+ $(KOS_MAKE) -C yuv_converter dist
diff --git a/examples/dreamcast/pvr/yuv_converter/Makefile b/examples/dreamcast/pvr/yuv_converter/Makefile
new file mode 100644
index 0000000..6f23bc9
--- /dev/null
+++ b/examples/dreamcast/pvr/yuv_converter/Makefile
@@ -0,0 +1,17 @@
+# KallistiOS ##version##
+#
+# examples/dreamcast/pvr/yuv_converter/Makefile
+# Copyright (C) 2023 Falco Girgis
+#
+
+all:
+ $(KOS_MAKE) -C YUV420
+ $(KOS_MAKE) -C YUV422
+
+clean:
+ $(KOS_MAKE) -C YUV420 clean
+ $(KOS_MAKE) -C YUV422 clean
+
+dist:
+ $(KOS_MAKE) -C YUV420 dist
+ $(KOS_MAKE) -C YUV422 dist
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|