Set up drawing to framebuffer

This commit is contained in:
Camden Dixie O'Brien
2025-10-12 18:22:18 +01:00
commit 7de7f5bfb0
3 changed files with 91 additions and 0 deletions

8
build.sh Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
cc="gcc"
warn="-std=c23 -pedantic -Wall -Wextra"
opt="-O2 -march=native"
libs="-I/usr/include/libdrm -ldrm"
$cc $flags $libs main.c -o asteroids