From 065e6ec5a28f8895e6bc226ed561716df92609c5 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Wed, 7 Apr 2021 17:36:19 +0300 Subject: [PATCH] fixed missing dependency to aas_data.h --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3d0b9d4..a0281a9 100644 --- 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) -- 1.7.10.4