fixed missing dependency to aas_data.h
authorJohn Tsiombikas <nuclear@member.fsf.org>
Wed, 7 Apr 2021 14:36:19 +0000 (17:36 +0300)
committerJohn Tsiombikas <nuclear@member.fsf.org>
Wed, 7 Apr 2021 14:36:19 +0000 (17:36 +0300)
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)