Grid base

This commit is contained in:
Rendo 2026-03-11 18:48:29 +05:00
commit 0432d6932c
11 changed files with 81 additions and 14 deletions

View file

@ -1,9 +1,10 @@
CFLAGS=$(shell cat compiler_flags.txt)
CP=clang
CFLAGS=$(shell cat compiler_flags.txt | tr '\n' ' ')
FILES=$(wildcard src/*.cpp)
build/raylib-test-linux.x86_64 : $(FILES)
mkdir -p build
clang $(FILES) $(CFLAGS) -o build/raylib-test-linux.x86_64
$(CP) $(FILES) $(CFLAGS) -o build/raylib-test-linux.x86_64
clean :