diff options
author | fluxgen <fluxgen> | 2002-11-12 17:11:43 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-11-12 17:11:43 (GMT) |
commit | b86fba5354cf91f189249f0959d0f34a2e2fb8a8 (patch) | |
tree | 2d27fe7812a1599fae355ad8b1af5e32c26ddee7 /util/fbrun | |
parent | 739d2e8d07546c6c7c9d8f9e114ce969e505f41e (diff) | |
download | fluxbox-b86fba5354cf91f189249f0959d0f34a2e2fb8a8.zip fluxbox-b86fba5354cf91f189249f0959d0f34a2e2fb8a8.tar.bz2 |
optional linking with fonts
Diffstat (limited to 'util/fbrun')
-rw-r--r-- | util/fbrun/Makefile.am | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/util/fbrun/Makefile.am b/util/fbrun/Makefile.am index ba211d6..a30108e 100644 --- a/util/fbrun/Makefile.am +++ b/util/fbrun/Makefile.am | |||
@@ -2,6 +2,16 @@ FLUXBOX_SRC_DIR=../../src/ | |||
2 | INCLUDES = -I${FLUXBOX_SRC_DIR} | 2 | INCLUDES = -I${FLUXBOX_SRC_DIR} |
3 | bin_PROGRAMS = fbrun | 3 | bin_PROGRAMS = fbrun |
4 | fbrun_SOURCES = FbRun.hh FbRun.cc main.cc | 4 | fbrun_SOURCES = FbRun.hh FbRun.cc main.cc |
5 | fbrun_LDADD = ${FLUXBOX_SRC_DIR}Font.o ${FLUXBOX_SRC_DIR}StringUtil.o | ||
6 | 5 | ||
7 | fbrun.o: ${FLUXBOX_SRC_DIR}/Font.hh | 6 | if XFT |
7 | xft_OBJ = ${FLUXBOX_SRC_DIR}/XftFontImp.o | ||
8 | endif | ||
9 | if MULTIBYTE | ||
10 | xmb_OBJ = ${FLUXBOX_SRC_DIR}/XmbFontImp.o | ||
11 | endif | ||
12 | |||
13 | fbrun_LDADD = ${FLUXBOX_SRC_DIR}Font.o ${FLUXBOX_SRC_DIR}StringUtil.o ${FLUXBOX_SRC_DIR}/Timer.o \ | ||
14 | ${FLUXBOX_SRC_DIR}/BaseDisplay.o ${FLUXBOX_SRC_DIR}/i18n.o \ | ||
15 | ${xft_OBJ} ${xmb_OBJ} ${FLUXBOX_SRC_DIR}/XFontImp.o | ||
16 | |||
17 | fbrun.o: ${FLUXBOX_SRC_DIR}/Font.hh ${FLUXBOX_SRC_DIR}/BaseDisplay.hh | ||