fix makefile and gitignore

This commit is contained in:
2026-05-26 09:50:52 +02:00
parent fbfb9d903f
commit e2ffcb972b
2 changed files with 2 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,2 @@
build/
main
game_of_life

View File

@@ -1,5 +1,6 @@
CC := gcc
CFLAGS := -Wall -Wextra -g -fsanitize=address,undefined $(shell sdl2-config --cflags)
CFLAGS += -O3 -march=native
LDFLAGS := $(shell sdl2-config --libs)
TARGET := game_of_life