Fix missing SDL_gfx pkg-config check
This commit is contained in:
parent
542848dd6b
commit
a0bd3ed5e9
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -15,8 +15,8 @@
|
|||
|
||||
CC ?= gcc
|
||||
PREFIX ?= /usr/local
|
||||
SDL_CFLAGS := $(shell pkg-config --cflags sdl 2>&1)
|
||||
SDL_LIBS = $(shell pkg-config --libs sdl)
|
||||
SDL_CFLAGS := $(shell pkg-config --cflags sdl SDL_gfx 2>&1)
|
||||
SDL_LIBS = $(shell pkg-config --libs sdl SDL_gfx)
|
||||
|
||||
LIB_VERSION = 1.2
|
||||
|
||||
|
|
Loading…
Reference in a new issue