build.sh: use $CC (default value is still "cc")

This commit is contained in:
Sigrid Solveig Haflínudóttir 2021-11-08 18:31:08 +01:00
parent e9f0585e0b
commit 428a1da50e
No known key found for this signature in database
GPG Key ID: FC8DDA5A6A7456C4
1 changed files with 4 additions and 3 deletions

View File

@ -26,6 +26,7 @@ then
fi
mkdir -p bin
CC="${CC:-cc}"
CFLAGS="-std=c89 -Wall -Wno-unknown-pragmas"
case "$(uname -s 2>/dev/null)" in
MSYS_NT*) # MSYS2 on Windows
@ -51,9 +52,9 @@ else
fi
echo "Building.."
cc ${CFLAGS} src/uxnasm.c -o bin/uxnasm
cc ${CFLAGS} ${CORE} src/devices/file.c src/devices/ppu.c src/devices/apu.c src/uxnemu.c ${UXNEMU_LDFLAGS} -o bin/uxnemu
cc ${CFLAGS} ${CORE} src/devices/file.c src/uxncli.c -o bin/uxncli
${CC} ${CFLAGS} src/uxnasm.c -o bin/uxnasm
${CC} ${CFLAGS} ${CORE} src/devices/file.c src/devices/ppu.c src/devices/apu.c src/uxnemu.c ${UXNEMU_LDFLAGS} -o bin/uxnemu
${CC} ${CFLAGS} ${CORE} src/devices/file.c src/uxncli.c -o bin/uxncli
if [ -d "$HOME/bin" ]
then