RE: https://mastodon.social/@minotaurs_at_work/116566330254691320
GUYS I DID IT HERE'S HOW:
> Download the #raylib source code.
> Put a terminal in the `src` folder.
> Use #GnuMake with the command `make PLATFORM=PLATFORM_DESKTOP` because we're making a desktop GNU/Linux game.
> This will create an .a file and a series of .o files in the `src` folder.
> Include the .a file in your #GnuGcc linking command with `-L[directory where the file is] -lraylib` and the .o files.
> Remember to include <math.h> with `-lm`and X11 with `-lX11` in your linking command.
