8 lines
137 B
Bash
Executable file
8 lines
137 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
bash ./scripts/prepare.sh
|
|
|
|
nasm -f elf64 -o build/fb.o src/fb.asm
|
|
gcc -no-pie -o bin/fb_asm build/fb.o -lc
|
|
bin/fb_asm
|