From 6f24fe6971e31837abecb3367967ddc8d8c103dd Mon Sep 17 00:00:00 2001 From: Michael Pavone Date: Sat, 18 Apr 2020 23:07:44 -0700 Subject: Allow specifying a default font path at build time --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 8be670c..5a26137 100644 --- a/Makefile +++ b/Makefile @@ -255,6 +255,10 @@ ifdef DATA_PATH CFLAGS+= -DDATA_PATH='"'$(DATA_PATH)'"' endif +ifdef FONT_PATH +CFLAGS+= -DFONT_PATH='"'$(FONT_PATH)'"' +endif + ALL=dis$(EXE) zdis$(EXE) stateview$(EXE) vgmplay$(EXE) blastem$(EXE) ifneq ($(OS),Windows) ALL+= termhelper -- cgit v1.2.3