From: Lawrence S. <ljs...@us...> - 2020-09-20 00:43:45
|
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 c8f550bcfd4b0a200ba740933869c3a533b1fcc9 (commit) from 9e04dfc35a091e80929d6158cda53d7c804c5f30 (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 c8f550bcfd4b0a200ba740933869c3a533b1fcc9 Author: Lawrence Sebald <ljs...@us...> Date: Sat Sep 19 20:43:12 2020 -0400 Don't build naomibintool or naominetboot when not building for NAOMI. ----------------------------------------------------------------------- Summary of changes: .gitignore | 1 + utils/Makefile | 11 ++++++----- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b7e6fb3..f9ade36 100644 --- a/.gitignore +++ b/.gitignore @@ -29,6 +29,7 @@ utils/dcbumpgen/dcbumpgen utils/scramble/scramble utils/makeip/makeip utils/naomibintool/naomibintool +utils/naominetboot/naominetboot examples/dreamcast/basic/exec/romdisk/sub.bin examples/dreamcast/kgl/basic/vq/fruit.vq examples/dreamcast/conio/adventure/data.c diff --git a/utils/Makefile b/utils/Makefile index d5012a9..c635e77 100644 --- a/utils/Makefile +++ b/utils/Makefile @@ -1,11 +1,14 @@ # KallistiOS ##version## # # utils/Makefile -# (c)2001 Dan Potter +# Copyright (C) 2001 Dan Potter # -DIRS = genromfs wav2adpcm vqenc scramble dcbumpgen makeip naomibintool \ - naominetboot +DIRS = genromfs wav2adpcm vqenc scramble dcbumpgen makeip + +ifeq ($(KOS_SUBARCH), naomi) + DIRS += naomibintool naominetboot +endif # Ok for these to fail atm... @@ -14,5 +17,3 @@ all: clean: for i in $(DIRS); do $(KOS_MAKE) -C $$i clean; done - - hooks/post-receive -- A pseudo Operating System for the Dreamcast. |