flappychik

Silly SDL2 game
git clone git://bsandro.tech/flappychik
Log | Files | Refs

commit a5ece423766f9be0cedcbf237e756aa84c0cf963
parent 0bcdc35ccd086bbf9b1a4449cbd600844428fb70
Author: bsandro <brian.drosan@gmail.com>
Date:   Mon, 14 Feb 2022 00:08:23 +0200

SDL2_image pkg-config search fix

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -1,7 +1,7 @@ NAME=$(shell basename ${PWD}) -SDL2FLAGS=$(shell pkg-config --cflags sdl2 sdl2_image) +SDL2FLAGS=$(shell pkg-config --cflags sdl2 SDL2_image) CFLAGS?=-std=c99 -Wall -Wextra -pedantic -I. -O0 -g -LDFLAGS?=$(shell pkg-config --libs sdl2 sdl2_image) +LDFLAGS?=$(shell pkg-config --libs sdl2 SDL2_image) SRC=$(wildcard *.c) DEPS:=$(wildcard *.h) OBJ:=$(SRC:.c=.o)