forked from gbdev/rgbds
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/Makefile b/Makefile | ||
index fc5b476..74d573b 100644 | ||
--- a/Makefile | ||
+++ b/Makefile | ||
@@ -86,6 +86,8 @@ assets/%.pb8: assets/% src/tools/pb8.py | ||
assets/%.pb8.size: assets/% | ||
@${MKDIR_P} ${@D} | ||
$(call filesize,$<,8) > assets/$*.pb8.size | ||
+ stat --format='%Y %y' $@ | ||
+ stat --format='%Y %y' obj/crash_handler.mk | ||
|
||
|
||
# How to build a ROM. | ||
@@ -107,7 +109,6 @@ obj/%.mk: src/%.asm | ||
# even when it isn't! | ||
# This causes weird issues that depend, among other things, on the version of Make. | ||
obj/%.o: obj/%.mk | ||
- @touch $@ | ||
|
||
ifeq ($(filter clean,${MAKECMDGOALS}),) | ||
include $(patsubst src/%.asm,obj/%.mk,${SRCS}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters