fix: refactor code structure into files (#8)

closes #7

Co-authored-by: HiveBeats <e1lama@protonmail.com>
Reviewed-on: #8
This commit is contained in:
2023-06-18 14:46:20 +03:00
parent 97c743100a
commit 7eb6a1755d
12 changed files with 473 additions and 456 deletions

View File

@@ -1,3 +1,3 @@
#!/bin/bash
CC="${CXX:-cc}"
$CC -Wall -std=c11 ./main.c ./parser.c -lm -lraylib -o ./bin/main
$CC -Wall -std=c11 ./main.c ./utils.c ./ring_buffer.c ./oscillator.c ./parser.c ./export.c -lm -lraylib -o ./bin/main