diff options
author | GriffinR <griffin.richards@comcast.net> | 2019-10-01 02:42:24 -0400 |
---|---|---|
committer | GriffinR <griffin.richards@comcast.net> | 2019-10-01 02:42:24 -0400 |
commit | 152b5530dd31c7abadca9e1825ae787de6a2c66e (patch) | |
tree | 06e3128a9db1ed56d00fd6240e272e207c769277 | |
parent | 1bd678656c735bbeb603ccb80367c7a85f820f61 (diff) |
Add shasum in addition to sha1sum
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ CC1 := tools/agbcc/bin/agbcc$(EXE) CPP := $(PREFIX)cpp LD := $(PREFIX)ld OBJCOPY := $(PREFIX)objcopy -SHA1SUM := sha1sum -c +SHA1SUM := $(shell { command -v sha1sum || command -v shasum; } 2>/dev/null) -c GBAGFX := tools/gbagfx/gbagfx$(EXE) RSFONT := tools/rsfont/rsfont$(EXE) AIF2PCM := tools/aif2pcm/aif2pcm$(EXE) |