Game rebuilds against latest libsdl3game

This commit is contained in:
2026-05-04 00:18:55 -04:00
parent 2028065b84
commit e95b907ba9
7 changed files with 14 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
SDLFLAGS_CC:=$(shell pkg-config sdl3 --cflags)
SDLFLAGS_LD:=$(shell pkg-config sdl3 --libs) $(shell pkg-config sdl3-mixer --libs) $(shell pkg-config sdl3-image --libs) -lasound
SDLFLAGS_CC:=$(shell pkg-config sdl3 --cflags) $(shell pkg-config sdl3-image --cflags) $(shell pkg-config sdl3game --clfags) $(shell pkg-config akerror --cflags)
SDLFLAGS_LD:=$(shell pkg-config sdl3 --libs) $(shell pkg-config sdl3-mixer --libs) $(shell pkg-config sdl3-image --libs) $(shell pkg-config sdl3game --libs) $(shell pkg-config akerror --libs) -lasound
CC:=$(shell which gcc)
LD:=$(shell which ld)