diff options
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 | ||