optional linking with fonts
This commit is contained in:
parent
739d2e8d07
commit
b86fba5354
1 changed files with 12 additions and 2 deletions
|
@ -2,6 +2,16 @@ FLUXBOX_SRC_DIR=../../src/
|
||||||
INCLUDES = -I${FLUXBOX_SRC_DIR}
|
INCLUDES = -I${FLUXBOX_SRC_DIR}
|
||||||
bin_PROGRAMS = fbrun
|
bin_PROGRAMS = fbrun
|
||||||
fbrun_SOURCES = FbRun.hh FbRun.cc main.cc
|
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
|
||||||
|
|
Loading…
Reference in a new issue