jeu de la vie

This commit is contained in:
2026-05-25 17:19:17 +02:00
parent c550f80b3a
commit 638eb5f381
5 changed files with 138 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
CC := gcc
CFLAGS := -Wall -Wextra -g -fsanitize=address,undefined $(shell sdl2-config --cflags)
LDFLAGS := $(shell sdl2-config --libs)
TARGET := main
TARGET := game_of_life
SRC_DIR := src
BLD_DIR := build
@@ -28,4 +28,7 @@ clean:
fclean: clean
rm -f $(TARGET)
run:
./$(TARGET)
re: fclean all