uxn/build.sh

128 lines
2.9 KiB
Bash
Raw Normal View History

2021-08-18 23:23:15 +00:00
#!/bin/sh -e
2021-01-29 19:17:59 +00:00
format=0
console=0
2022-02-04 03:52:12 +00:00
install=0
debug=0
norun=0
while [ $# -gt 0 ]; do
case $1 in
--format)
format=1
shift
;;
--console)
console=1
shift
;;
2022-02-04 03:52:12 +00:00
--install)
install=1
shift
;;
--debug)
debug=1
shift
;;
--no-run)
norun=1
shift
;;
*)
shift
esac
done
2021-03-23 02:04:31 +00:00
echo "Cleaning.."
2022-03-14 17:21:36 +00:00
rm -f ./bin/*
2021-01-29 19:17:59 +00:00
# When clang-format is present
if [ $format = 1 ];
then
echo "Formatting.."
clang-format -i src/uxn.h
clang-format -i src/uxn.c
clang-format -i src/devices/system.h
clang-format -i src/devices/system.c
2021-12-28 21:37:26 +00:00
clang-format -i src/devices/screen.h
clang-format -i src/devices/screen.c
2021-12-28 21:47:35 +00:00
clang-format -i src/devices/audio.h
clang-format -i src/devices/audio.c
clang-format -i src/devices/file.h
clang-format -i src/devices/file.c
2021-12-27 05:02:24 +00:00
clang-format -i src/devices/mouse.h
clang-format -i src/devices/mouse.c
clang-format -i src/devices/controller.h
clang-format -i src/devices/controller.c
2022-01-07 18:02:28 +00:00
clang-format -i src/devices/datetime.h
clang-format -i src/devices/datetime.c
clang-format -i src/uxnasm.c
clang-format -i src/uxnemu.c
clang-format -i src/uxncli.c
fi
2021-03-23 02:04:31 +00:00
mkdir -p bin
CC="${CC:-cc}"
2021-11-17 13:12:02 +00:00
CFLAGS="${CFLAGS:--std=c89 -Wall -Wno-unknown-pragmas}"
2021-10-10 19:07:40 +00:00
case "$(uname -s 2>/dev/null)" in
MSYS_NT*|MINGW*) # MSYS2 on Windows
if [ $console = 1 ];
then
UXNEMU_LDFLAGS="-static $(sdl2-config --cflags --static-libs | sed -e 's/ -mwindows//g')"
else
UXNEMU_LDFLAGS="-static $(sdl2-config --cflags --static-libs)"
fi
2021-10-10 19:07:40 +00:00
;;
Darwin) # macOS
CFLAGS="${CFLAGS} -Wno-typedef-redefinition"
UXNEMU_LDFLAGS="$(brew --prefix)/lib/libSDL2.a $(sdl2-config --cflags --static-libs | sed -e 's/-lSDL2 //')"
2021-10-10 19:07:40 +00:00
;;
Linux|*)
UXNEMU_LDFLAGS="-L/usr/local/lib $(sdl2-config --cflags --libs)"
2021-10-10 19:07:40 +00:00
;;
esac
if [ $debug = 1 ];
2021-03-23 02:04:31 +00:00
then
echo "[debug]"
2021-06-25 22:04:43 +00:00
CFLAGS="${CFLAGS} -DDEBUG -Wpedantic -Wshadow -Wextra -Werror=implicit-int -Werror=incompatible-pointer-types -Werror=int-conversion -Wvla -g -Og -fsanitize=address -fsanitize=undefined"
2021-06-25 22:30:40 +00:00
CORE='src/uxn.c'
2021-03-23 02:04:31 +00:00
else
2021-06-25 22:04:43 +00:00
CFLAGS="${CFLAGS} -DNDEBUG -Os -g0 -s"
CORE='src/uxn.c'
2021-05-12 03:30:03 +00:00
fi
2021-06-27 17:56:21 +00:00
echo "Building.."
${CC} ${CFLAGS} src/uxnasm.c -o bin/uxnasm
2022-01-13 16:25:59 +00:00
${CC} ${CFLAGS} ${CORE} src/devices/system.c src/devices/file.c src/devices/datetime.c src/devices/mouse.c src/devices/controller.c src/devices/screen.c src/devices/audio.c src/uxnemu.c ${UXNEMU_LDFLAGS} -o bin/uxnemu
${CC} ${CFLAGS} ${CORE} src/devices/system.c src/devices/file.c src/devices/datetime.c src/uxncli.c -o bin/uxncli
2021-05-12 03:30:03 +00:00
2022-02-04 03:52:12 +00:00
if [ $install = 1 ]
2021-05-12 03:30:03 +00:00
then
echo "Installing in $HOME/bin"
2021-08-19 05:08:09 +00:00
cp bin/uxnemu bin/uxnasm bin/uxncli $HOME/bin/
2021-03-23 02:04:31 +00:00
fi
2021-02-09 18:06:55 +00:00
2022-01-11 04:35:34 +00:00
echo "Assembling(launcher).."
./bin/uxnasm projects/software/launcher.tal bin/launcher.rom
2021-10-08 01:28:06 +00:00
echo "Assembling(asma).."
./bin/uxnasm projects/software/asma.tal bin/asma.rom
if [ $norun = 1 ]; then exit; fi
2021-10-08 01:28:06 +00:00
echo "Assembling(piano).."
2022-05-31 20:25:41 +00:00
bin/uxncli bin/asma.rom projects/software/piano.tal bin/piano.rom 2> bin/piano.log
2021-01-29 19:17:59 +00:00
2021-03-23 02:04:31 +00:00
echo "Running.."
2021-11-08 17:19:45 +00:00
cd bin
./uxnemu piano.rom
2021-03-22 23:51:12 +00:00
2021-05-18 13:31:05 +00:00
echo "Done."
2021-11-08 17:19:45 +00:00
cd ..