diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2019-08-06 20:16:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-06 20:16:36 -0400 |
commit | ca8048c300f7df74e46ade85b1a7f3adbf34522a (patch) | |
tree | a76d164bd08fb82a9001e08ecc4d2c18890102c1 /tools/gbagfx | |
parent | 2a0517f0fdfe0ce8f2395f6572bf43190ecbe611 (diff) | |
parent | e28cf5406b25707338458a3f49125b38750c8627 (diff) |
Merge pull request #771 from aaaaaa123456789/master
Fix Makefiles to account for the $CC and $CXX environment variables
Diffstat (limited to 'tools/gbagfx')
-rw-r--r-- | tools/gbagfx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gbagfx/Makefile b/tools/gbagfx/Makefile index 339585b92..d9c219587 100644 --- a/tools/gbagfx/Makefile +++ b/tools/gbagfx/Makefile @@ -1,4 +1,4 @@ -CC = gcc +CC ?= gcc CFLAGS = -Wall -Wextra -Werror -std=c11 -O2 -DPNG_SKIP_SETJMP_CHECK |