WIP: controls

This commit is contained in:
Michael Smith
2026-01-16 17:58:00 +01:00
parent c1deafb7dd
commit 333ab8f82d
3 changed files with 125 additions and 20 deletions

View File

@@ -1,5 +1,11 @@
#!/bin/sh
pushd build
gcc -o sdlamp2 -Wall -O0 -ggdb3 ../src/sdlamp2.c `sdl2-config --cflags --libs`
gcc -Wall -O0 -ggdb3 \
-o sdlamp2 \
`sdl2-config --cflags --libs` \
-lSDL2_image \
../src/sdlamp2.c
popd