NEWS: Welcome to my new homepage! <3

Makefile - freezo - A retro platform game

freezo

A retro platform game
git clone git://192.168.2.2/freezo
Log | Files | Refs | README

Makefile (201B)


      1 build:
      2 	cc -o freezo -I/opt/homebrew/Cellar/raylib/5.0/include -L/opt/homebrew/Cellar/raylib/5.0/lib -lraylib -rdynamic -Wall -Wextra -Werror -pedantic src/*.c
      3 
      4 run: build
      5 	./freezo
      6 
      7 clean:
      8 	rm freezo