8 lines
219 B
Bash
Executable File
8 lines
219 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd $(dirname "$0")
|
|
mkdir -p ./.dynamic
|
|
mkdir -p ./.temp
|
|
$CC -Wno-unused-result -Wno-incompatible-pointer-types waveforms.c ../../tools/gifenc/gifenc.c -I../../tools -O2 -o ./.temp/waveforms
|
|
./.temp/waveforms
|