optional linking with fonts

This commit is contained in:
fluxgen 2002-11-12 17:11:43 +00:00
parent 739d2e8d07
commit b86fba5354

View file

@ -2,6 +2,16 @@ FLUXBOX_SRC_DIR=../../src/
INCLUDES = -I${FLUXBOX_SRC_DIR}
bin_PROGRAMS = fbrun
fbrun_SOURCES = FbRun.hh FbRun.cc main.cc
fbrun_LDADD = ${FLUXBOX_SRC_DIR}Font.o ${FLUXBOX_SRC_DIR}StringUtil.o
fbrun.o: ${FLUXBOX_SRC_DIR}/Font.hh
if XFT
xft_OBJ = ${FLUXBOX_SRC_DIR}/XftFontImp.o
endif
if MULTIBYTE
xmb_OBJ = ${FLUXBOX_SRC_DIR}/XmbFontImp.o
endif
fbrun_LDADD = ${FLUXBOX_SRC_DIR}Font.o ${FLUXBOX_SRC_DIR}StringUtil.o ${FLUXBOX_SRC_DIR}/Timer.o \
${FLUXBOX_SRC_DIR}/BaseDisplay.o ${FLUXBOX_SRC_DIR}/i18n.o \
${xft_OBJ} ${xmb_OBJ} ${FLUXBOX_SRC_DIR}/XFontImp.o
fbrun.o: ${FLUXBOX_SRC_DIR}/Font.hh ${FLUXBOX_SRC_DIR}/BaseDisplay.hh