uxn

Varvara Ordinator, written in ANSI C(SDL2)
git clone https://git.eamoncaddigan.net/uxn.git
Log | Files | Refs | README | LICENSE

commit 93ac1045e888b94e7a6038b332e568ae9e32d189
parent 8783bf12b2f610185865ede4a7a1b16d0f8428e7
Author: Andrew Alderwick <andrew@alderwick.co.uk>
Date:   Fri, 25 Jun 2021 23:30:40 +0100

Whitespace changes

Diffstat:
Mbuild.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.sh b/build.sh @@ -34,10 +34,10 @@ if [ "${1}" = '--debug' ]; then echo "[debug]" CFLAGS="${CFLAGS} -DDEBUG -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined" - CORE='src/uxn.c' + CORE='src/uxn.c' else CFLAGS="${CFLAGS} -DNDEBUG -Os -g0 -s" - CORE='src/uxn-fast.c' + CORE='src/uxn-fast.c' fi cc ${CFLAGS} src/uxnasm.c -o bin/uxnasm cc ${CFLAGS} ${CORE} src/devices/ppu.c src/devices/apu.c src/devices/mpu.c src/uxnemu.c ${UXNEMU_LDFLAGS} -o bin/uxnemu