diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-06-20 22:02:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 22:02:33 +0300 |
commit | e9e192ce20e2f863a836c3ee9ab364921d068116 (patch) | |
tree | bf686b1743e8f600df2038a9780656f0db9c208b /arm9 | |
parent | b64e6294325527938bc4d95f87cc79b6a2b32ac8 (diff) | |
parent | 5592251a949bc6be10ea87a12df9b4eb47f1e545 (diff) |
Merge pull request #174 from RoastVeg/master
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 17033200..36e19417 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) |