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 d1fd7dc7b7de15950eb8db99e2831a10cb872f7e (commit)
from f842d4b3c8a391f2793c20e58f8f031f0c316043 (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 d1fd7dc7b7de15950eb8db99e2831a10cb872f7e
Author: Andy Barajas <and...@gm...>
Date: Thu Sep 26 20:44:52 2024 -0700
Bug in bin2c's Makefile, the bin2c target does not depend on bin2c.c (#777)
-----------------------------------------------------------------------
Summary of changes:
utils/bin2c/Makefile | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/utils/bin2c/Makefile b/utils/bin2c/Makefile
index a6ec3d9e..a8c57ee6 100644
--- a/utils/bin2c/Makefile
+++ b/utils/bin2c/Makefile
@@ -3,9 +3,8 @@
all: bin2c
-bin2c:
- gcc -o bin2c bin2c.c
+bin2c: bin2c.c
+ gcc -o $@ $^
clean:
-rm -f bin2c
-
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|