mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2025-12-31 06:30:52 +00:00
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@515 b9cfdab3-6d41-4d17-bbe4-086880011989
11 lines
192 B
Makefile
11 lines
192 B
Makefile
# $Id$
|
|
|
|
ifeq ($(USE_FREETYPE2),1)
|
|
L_CFLAGS += -DUSE_FREETYPE2
|
|
|
|
ifneq ($(CROSS),1)
|
|
L_CFLAGS += $(shell pkg-config --cflags freetype2)
|
|
L_LIBS += $(shell pkg-config --libs freetype2)
|
|
endif
|
|
endif
|