diff options
author | Juan J. Martinez <jjm@usebox.net> | 2021-02-09 20:26:24 +0000 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2021-02-09 20:29:59 +0000 |
commit | 6dce96890ef234c236d5bdb4be3245413f255d75 (patch) | |
tree | 82c7dc7e7b555f3291a7633a78b5a9f4eec605db /tools | |
parent | 35a02ba510b66c9dc0b007315f76a389c9557942 (diff) | |
download | ubox-msx-lib-6dce96890ef234c236d5bdb4be3245413f255d75.tar.gz ubox-msx-lib-6dce96890ef234c236d5bdb4be3245413f255d75.zip |
Flag for gcc 10 compatibility
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/hex2bin-2.0/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hex2bin-2.0/Makefile b/tools/hex2bin-2.0/Makefile index 6981b27..6c87000 100755 --- a/tools/hex2bin-2.0/Makefile +++ b/tools/hex2bin-2.0/Makefile @@ -13,7 +13,7 @@ M_OBJFILES= $(foreach F, mot2bin.o common.o libcrc.o binary.o, $(OBJDIR)/$(F)) TGT_FILES = $(foreach F, hex2bin mot2bin, $(TGTDIR)/$(F)) #TGT_FILES = $(foreach F, hex2bin mot2bin hex2bin.1, $(TGTDIR)/$(F)) -CPFLAGS = -std=gnu99 -O3 -fsigned-char -Wall -pedantic +CPFLAGS = -std=gnu99 -O3 -fsigned-char -Wall -pedantic -fcommon # Compile all: objectdir $(TGT_FILES) |