Finalise the starfield code

This commit is contained in:
2023-08-19 16:59:16 +01:00
parent 78b2b8bfd1
commit 16c6048296
3 changed files with 180 additions and 24 deletions

View File

@@ -1,8 +1,8 @@
#!/bin/bash
CC=clang
CFLAGS="-g -Wall -Werror -pedantic"
LIBS="-lSDL2"
CFLAGS="-g"
LIBS="-lm -lSDL2"
SRC="main.c"
OUT="main"