12 lines
257 B
Bash
Executable File
12 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cc="gcc"
|
|
warn="-std=c23 -pedantic -Wall -Wextra"
|
|
opt="-O2 -march=native"
|
|
libs="-I/usr/include/libdrm -ldrm -lm"
|
|
defs="-D_POSIX_C_SOURCE=200809L"
|
|
|
|
$cc $warn $flags $libs $defs \
|
|
-o asteroids \
|
|
fb.c game.c input.c main.c maths.c renderer.c rng.c
|