2021-04-01 14:46:41 -04:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "Formatting.."
|
|
|
|
clang-format -i tables.c
|
|
|
|
|
|
|
|
echo "Cleaning.."
|
|
|
|
rm -f ../../bin/tables
|
|
|
|
|
|
|
|
echo "Building.."
|
|
|
|
mkdir -p ../../bin
|
2022-06-09 12:19:15 -04:00
|
|
|
cc -lm tables.c -o ../../bin/tables
|
2021-04-01 14:46:41 -04:00
|
|
|
|
|
|
|
echo "Assembling.."
|
|
|
|
../../bin/tables
|
|
|
|
|
|
|
|
echo "Done."
|