projects
/
gbajam21
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6610771
)
fixed missing dependency to aas_data.h
author
John Tsiombikas
<nuclear@member.fsf.org>
Wed, 7 Apr 2021 14:36:19 +0000
(17:36 +0300)
committer
John Tsiombikas
<nuclear@member.fsf.org>
Wed, 7 Apr 2021 14:36:19 +0000
(17:36 +0300)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
3d0b9d4
..
a0281a9
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-38,7
+38,7
@@
$(bin): $(elf)
$(OBJCOPY) -O binary $(elf) $(bin)
gbafix -r0 $(bin)
-$(elf): $(obj) $(libs)
+$(elf): data/aas_data.h $(obj) $(libs)
$(CC) -o $(elf) $(obj) -specs=gba.specs $(LDFLAGS)
-include $(dep)