Drive gameplay with audio instead of timer

This commit is contained in:
2024-10-23 22:50:44 -04:00
parent 3d2c6cbddf
commit a479d3c0b3
4 changed files with 40 additions and 27 deletions
+2 -4
View File
@@ -28,17 +28,15 @@ output/%.o: %.c
@mkdir -p output
@$(CC) -c -o $@ $< -I . \
-I shrooms-vb-core/core $(SDL2FLAGS) \
-D _POSIX_C_SOURCE=199309L \
-O3 -flto -fno-strict-aliasing \
-Werror -std=c11 -Wall -Wextra -Wpedantic
-Werror -std=c90 -Wall -Wextra -Wpedantic
output/vb.o: shrooms-vb-core/core/vb.c
@mkdir -p output
@$(CC) -c -o $@ $< -I . \
-I shrooms-vb-core/core $(SDL2FLAGS) \
-D _POSIX_C_SOURCE=199309L \
-O3 -flto -fno-strict-aliasing \
-Werror -std=c11 -Wall -Wextra -Wpedantic
-Werror -std=c90 -Wall -Wextra -Wpedantic
output/%.o: assets/%.bin
@mkdir -p output