uxn11/build.sh

55 lines
1.7 KiB
Bash
Raw Normal View History

2022-03-26 20:23:52 -04:00
#!/bin/sh -e
2022-04-18 15:32:42 -04:00
RELEASE_FLAGS="-Os -DNDEBUG -g0 -s"
2022-04-06 15:38:34 -04:00
DEBUG_FLAGS="-std=c89 -D_POSIX_C_SOURCE=199309L -DDEBUG -Wall -Wno-unknown-pragmas -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined"
2023-04-10 13:08:40 -04:00
EMU_INC="src/uxn.c src/devices/system.c src/devices/console.c src/devices/screen.c src/devices/controller.c src/devices/mouse.c src/devices/file.c src/devices/datetime.c src/uxn11.c -o bin/uxn11 -lX11"
CLI_INC="src/uxn.c src/devices/system.c src/devices/console.c src/devices/file.c src/devices/datetime.c src/uxncli.c -o bin/uxncli"
2022-04-06 15:38:34 -04:00
# find X11 libs on various systems
if [ -e /usr/X11R6 ]; then
# OpenBSD
RELEASE_FLAGS="-L/usr/X11R6/lib/ -I/usr/X11R6/include/ $RELEASE_FLAGS"
DEBUG_FLAGS="-L/usr/X11R6/lib/ -I/usr/X11R6/include/ $DEBUG_FLAGS"
fi
2022-04-05 14:42:50 -04:00
if [ "${1}" = '--format' ];
then
echo "Formatting.."
clang-format -i src/uxn11.c
2022-07-13 00:27:52 -04:00
clang-format -i src/uxnasm.c
2022-04-05 15:08:49 -04:00
clang-format -i src/uxncli.c
2022-04-05 14:42:50 -04:00
clang-format -i src/devices/*
fi
2022-03-26 20:23:52 -04:00
echo "Cleaning.."
2022-04-06 15:38:34 -04:00
rm -f bin/*
2022-03-26 20:23:52 -04:00
mkdir -p bin
2022-03-26 21:46:17 -04:00
2022-04-06 15:38:34 -04:00
echo "Building.."
2022-07-13 00:27:52 -04:00
cc -DNDEBUG -Os -g0 -s src/uxnasm.c -o bin/uxnasm
2022-04-05 14:42:50 -04:00
if [ "${1}" = '--install' ];
2022-03-30 13:37:47 -04:00
then
echo "Installing.."
gcc ${C_FLAGS} ${LD_FLAGS} ${RELEASE_FLAGS} ${EMU_INC}
gcc ${C_FLAGS} ${LD_FLAGS} ${RELEASE_FLAGS} ${CLI_INC}
2022-07-13 00:27:52 -04:00
cp bin/uxnasm ~/bin
2022-04-05 15:08:49 -04:00
cp bin/uxncli ~/bin
2022-07-13 00:27:52 -04:00
cp bin/uxn11 ~/bin
elif [ "${1}" = '--release' ];
then
gcc ${C_FLAGS} ${LD_FLAGS} ${RELEASE_FLAGS} ${EMU_INC}
gcc ${C_FLAGS} ${LD_FLAGS} ${RELEASE_FLAGS} ${CLI_INC}
2022-03-30 13:37:47 -04:00
else
gcc ${C_FLAGS} ${LD_FLAGS} ${DEBUG_FLAGS} ${EMU_INC}
gcc ${C_FLAGS} ${LD_FLAGS} ${DEBUG_FLAGS} ${CLI_INC}
2022-03-30 13:37:47 -04:00
fi
2022-03-26 21:46:17 -04:00
2022-04-06 15:38:34 -04:00
echo "Assembling.."
2023-01-01 13:47:17 -05:00
bin/uxnasm etc/polycat.tal bin/polycat.rom
2022-04-03 13:43:13 -04:00
2022-04-05 22:13:14 -04:00
echo "Running.."
2023-01-01 13:47:17 -05:00
bin/uxn11 bin/polycat.rom
2022-04-05 22:13:14 -04:00
2022-04-05 22:31:53 -04:00
echo "Done."