comparison Makefile @ 1934:253c62b7144e

Allow specifying a default font path at build time
author Michael Pavone <pavone@retrodev.com>
date Sat, 18 Apr 2020 23:07:44 -0700
parents 0f135b214927
children f23e70fb6607
comparison
equal deleted inserted replaced
1933:16a795cababd 1934:253c62b7144e
253 253
254 ifdef DATA_PATH 254 ifdef DATA_PATH
255 CFLAGS+= -DDATA_PATH='"'$(DATA_PATH)'"' 255 CFLAGS+= -DDATA_PATH='"'$(DATA_PATH)'"'
256 endif 256 endif
257 257
258 ifdef FONT_PATH
259 CFLAGS+= -DFONT_PATH='"'$(FONT_PATH)'"'
260 endif
261
258 ALL=dis$(EXE) zdis$(EXE) stateview$(EXE) vgmplay$(EXE) blastem$(EXE) 262 ALL=dis$(EXE) zdis$(EXE) stateview$(EXE) vgmplay$(EXE) blastem$(EXE)
259 ifneq ($(OS),Windows) 263 ifneq ($(OS),Windows)
260 ALL+= termhelper 264 ALL+= termhelper
261 endif 265 endif
262 266