diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2020-08-01 21:45:32 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2020-08-01 21:45:32 -0400 |
commit | e20d92a8d67f32864eb90439b591f8dfb0b992e4 (patch) | |
tree | 1645f8ef8cce09915e6425ef6f9d7df26caae58e /Makefile | |
parent | 85a668f75a799b50d4a7d77ecb292735bcce76b2 (diff) |
Implement msgenc and decode script messages
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -87,6 +87,7 @@ MWCCARM = tools/mwccarm/$(MWCCVERSION)/mwccarm.exe # TODO: Is there a hack workaround to let us go back to GNU LD? Ideally, the # only dependency should be MWCCARM. KNARC = tools/knarc/knarc$(EXE) +MSGENC = tools/msgenc/msgenc$(EXE) MWLDARM = tools/mwccarm/$(MWCCVERSION)/mwldarm.exe MWASMARM = tools/mwccarm/$(MWCCVERSION)/mwasmarm.exe SCANINC = tools/scaninc/scaninc$(EXE) @@ -159,6 +160,7 @@ clean-fs: $(RM) $(filter %.narc %.arc,$(HOSTFS_FILES)) $(RM) $(NCGR_CLEAN_LIST) $(NCLR_CLEAN_LIST) find . \( -iname '*.1bpp' -o -iname '*.4bpp' -o -iname '*.8bpp' -o -iname '*.gbapal' -o -iname '*.lz' \) -exec $(RM) {} + + $(RM) files/msgdata/msg/narc_*.bin mostlyclean: tidy $(MAKE) -C arm9 mostlyclean |