uxn/build.sh

29 lines
1.0 KiB
Bash
Raw Normal View History

2021-01-29 19:17:59 +00:00
#!/bin/bash
2021-02-08 22:18:01 +00:00
# Create bin folder
mkdir -p bin
2021-01-29 19:17:59 +00:00
2021-02-08 22:18:01 +00:00
# Assembler
clang-format -i assembler.c
2021-02-09 05:59:46 +00:00
rm -f ./bin/assembler
rm -f ./bin/boot.rom
2021-02-08 22:18:01 +00:00
cc -std=c89 -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 assembler.c -o bin/assembler
2021-01-29 19:17:59 +00:00
2021-02-09 18:06:55 +00:00
# Core
2021-02-08 22:18:01 +00:00
clang-format -i uxn.h
clang-format -i uxn.c
2021-02-09 18:06:55 +00:00
2021-02-09 05:59:46 +00:00
# Emulator
2021-02-09 18:06:55 +00:00
clang-format -i emulator.c
2021-02-09 18:58:06 +00:00
rm -f ./bin/emulator
2021-02-18 23:11:02 +00:00
cc -std=c89 -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 uxn.c emulator.c -L/usr/local/lib -lSDL2 -o bin/emulator
# cc uxn.c emulator.c -std=c89 -Os -DNDEBUG -g0 -s -Wall -Wno-unknown-pragmas -L/usr/local/lib -lSDL2 -o bin/emulator
2021-01-29 19:17:59 +00:00
2021-03-22 23:51:12 +00:00
# Emulator(CLI)
clang-format -i emulator-cli.c
rm -f ./bin/emulator-cli
2021-01-29 19:17:59 +00:00
# run
2021-03-22 23:51:12 +00:00
./bin/assembler projects/software/nasu.usm bin/boot.rom
2021-03-13 22:55:29 +00:00
./bin/emulator bin/boot.rom