summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPikalaxALT <pikalaxalt@gmail.com>2020-06-08 13:38:59 -0400
committerPikalaxALT <pikalaxalt@gmail.com>2020-06-08 13:38:59 -0400
commit80c6cbc8447a6df209fd5b3a1d2ab25c0968499b (patch)
tree01252286dcc12c87073c22794662cbe167e1bc3a /Makefile
parente05e121ca0ed125946f8634cdc54b73ba295ecb1 (diff)
Fix order of target declaration
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index a6e7de2e..77352f41 100644
--- a/Makefile
+++ b/Makefile
@@ -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) $< $@