diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-08 13:38:59 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-06-08 13:38:59 -0400 |
commit | 80c6cbc8447a6df209fd5b3a1d2ab25c0968499b (patch) | |
tree | 01252286dcc12c87073c22794662cbe167e1bc3a /Makefile | |
parent | e05e121ca0ed125946f8634cdc54b73ba295ecb1 (diff) |
Fix order of target declaration
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,6 @@ # Makefile to build Pokemon Diamond image include config.mk -include filesystem.mk HOSTCC = $(CC) HOSTCXX = $(CXX) @@ -309,6 +308,8 @@ $(ROM): $(ELF) # Make sure build directory exists before compiling anything DUMMY != mkdir -p $(ALL_DIRS) +include filesystem.mk + %.4bpp: %.png $(GFX) $< $@ |