mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-22 23:47:51 +00:00
8 lines
116 B
Bash
Executable File
8 lines
116 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
mkdir -p "../lib"
|
|
cc -O2 -c kb_text_shape.c
|
|
ar -rcs ../lib/kb_text_shape.a kb_text_shape.o
|
|
rm *.o
|