diff options
author | Louis Hampton <roastveg@hotmail.co.uk> | 2020-06-18 00:55:16 +0100 |
---|---|---|
committer | Louis Hampton <roastveg@hotmail.co.uk> | 2020-06-18 00:55:16 +0100 |
commit | e4dde9edf85100353b5fa6fb9b757eaa43e2de42 (patch) | |
tree | 3fb9483beae897562ebdbc935c68907c432f2691 /arm9 | |
parent | b4d34b46564d50e1ee4eafc7814cc00e9913552b (diff) |
Added Dockerfile and build script
Diffstat (limited to 'arm9')
-rw-r--r-- | arm9/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arm9/Makefile b/arm9/Makefile index 25999e21..71d2ef93 100644 --- a/arm9/Makefile +++ b/arm9/Makefile @@ -192,7 +192,11 @@ LDFLAGS = -nodead -w off -proc v5te -interworking -map closure,unused -symtab so ####################### Other Tools ######################### # DS TOOLS +ifndef BUSYBOX SHA1SUM = sha1sum --quiet +else +SHA1SUM = sha1sum +endif JSONPROC = $(TOOLS_DIR)/jsonproc/jsonproc$(EXE) GFX = $(TOOLS_DIR)/nitrogfx/nitrogfx$(EXE) SCANINC = $(TOOLS_DIR)/scaninc/scaninc$(EXE) |