diff options
author | garak <garakmon@gmail.com> | 2019-05-13 21:21:01 -0400 |
---|---|---|
committer | garak <garakmon@gmail.com> | 2019-05-14 10:11:23 -0400 |
commit | 2e9d8a61e0882d6606e72185e830a4abc623c21d (patch) | |
tree | ef013b697bfc80b713b329d61d25236b23a195eb /Makefile | |
parent | 55d66b51770b4f657ed55822e7e76f6d6e3261d8 (diff) |
clean some code in the map dump
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -57,7 +57,7 @@ MAPJSON := tools/mapjson/mapjson # Secondary expansion is required for dependency variables in object rules. .SECONDEXPANSION: -.PHONY: rom clean compare tidy +.PHONY: rom tools clean compare tidy $(shell mkdir -p $(C_BUILDDIR) $(ASM_BUILDDIR) $(DATA_ASM_BUILDDIR) $(SONG_BUILDDIR)) @@ -76,6 +76,18 @@ SONG_OBJS := $(patsubst $(SONG_SUBDIR)/%.s,$(SONG_BUILDDIR)/%.o,$(SONG_SRCS)) OBJS := $(C_OBJS) $(ASM_OBJS) $(DATA_ASM_OBJS) $(SONG_OBJS) OBJS_REL := $(patsubst $(OBJ_DIR)/%,%,$(OBJS)) +tools: + @$(MAKE) -C tools/gbagfx + @$(MAKE) -C tools/scaninc + @$(MAKE) -C tools/preproc + @$(MAKE) -C tools/bin2c + @$(MAKE) -C tools/rsfont + @$(MAKE) -C tools/aif2pcm + @$(MAKE) -C tools/ramscrgen + @$(MAKE) -C tools/mid2agb + @$(MAKE) -C tools/gbafix + @$(MAKE) -C tools/mapjson + rom: $(ROM) # For contributors to make sure a change didn't affect the contents of the ROM. |