From: falcovorbis <fal...@us...> - 2024-05-10 03:05:38
|
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 4fde7cc16056bd59fb34ce6aaef8c84268fae0c5 (commit) from 9d2176ea7d0917b9759185b92c4d08cf773d8980 (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 4fde7cc16056bd59fb34ce6aaef8c84268fae0c5 Author: Andy Barajas <and...@gm...> Date: Thu May 9 20:05:23 2024 -0700 Update gitignore (#557) * Added utils/bincnv/bincnv.dSYM/ to gitignore * Add examples/dreamcast/kgl/nehe/nehe26/data/txt2bin to the list * Remove -g flag * Undo previous change ----------------------------------------------------------------------- Summary of changes: .gitignore | 1 + utils/bincnv/Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 9d351605..e3e4cd17 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ utils/naomibintool/naomibintool utils/naominetboot/naominetboot examples/dreamcast/basic/exec/romdisk/sub.bin examples/dreamcast/kgl/basic/vq/fruit.vq +examples/dreamcast/kgl/nehe/nehe26/data/txt2bin examples/dreamcast/conio/adventure/data.c examples/dreamcast/conio/adventure/datagen examples/dreamcast/png/romdisk_boot.img diff --git a/utils/bincnv/Makefile b/utils/bincnv/Makefile index d03dcb92..f671a797 100644 --- a/utils/bincnv/Makefile +++ b/utils/bincnv/Makefile @@ -7,7 +7,7 @@ all: bincnv bincnv: bincnv.c - gcc -g -o bincnv bincnv.c + gcc -o bincnv bincnv.c clean: -rm -f bincnv hooks/post-receive -- A pseudo Operating System for the Dreamcast. |