From 1e1338f1ded8aac9aac506c3a12d923df5f8ee95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Tue, 29 Mar 2016 16:52:05 +0200 Subject: [PATCH] make TTF_FONT_PATH configurable --- Makefile | 9 ++++++--- src/gfx_sdl.c | 1 - 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 2fba753..e8b0059 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ -CC ?= clang -CFLAGS += -Wno-visibility -Wno-incompatible-pointer-types -Wall -Wextra -O2 -DINVERT_COLORS -DVT100 -O2 -LFLAGS += +CC ?= clang +TTF_FONT_PATH ?= res/Anonymous Pro.ttf +CFLAGS += -DTTF_FONT_PATH="\"$(TTF_FONT_PATH)\"" +CFLAGS += -Wno-visibility -Wno-incompatible-pointer-types -Wall -Wextra +CFLAGS += -DINVERT_COLORS -DVT100 -O2 +LFLAGS += PROGRAM := 2048 C_FILES := $(wildcard src/*.c) diff --git a/src/gfx_sdl.c b/src/gfx_sdl.c index e46f53e..57a2800 100644 --- a/src/gfx_sdl.c +++ b/src/gfx_sdl.c @@ -5,7 +5,6 @@ #include "gfx.h" /* Side length of a 'pixel' in pixels */ -#define TTF_FONT_PATH "res/Anonymous Pro.ttf" #define TTF_FONT_PT 32 #define iterate(n, expression)\