14 lines
338 B
Bash
Executable File
14 lines
338 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 \
|
|
asteroids.c collisions.c entity.c fb.c game.c input.c \
|
|
main.c maths.c physics.c scene.c renderer.c rng.c \
|
|
self_destruct.c text.c
|