diff options
author | fluxgen <fluxgen> | 2002-10-25 21:07:56 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2002-10-25 21:07:56 (GMT) |
commit | a660cb0d08b71d8337d782e0e8f1c37c3fd6df92 (patch) | |
tree | d21ba5a55e47458dd5ba9c42de94ffb899a123ea | |
parent | db886fc7c8a41491b46a995e83d32d4783dae882 (diff) | |
download | fluxbox-a660cb0d08b71d8337d782e0e8f1c37c3fd6df92.zip fluxbox-a660cb0d08b71d8337d782e0e8f1c37c3fd6df92.tar.bz2 |
compile time options for newwmspec, gnome and multibyte
-rw-r--r-- | src/Makefile.am | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2938796..1d3382c 100644 --- a/src/Makefile.am +++ b/src/Makefile.am | |||
@@ -40,10 +40,19 @@ bin_PROGRAMS= fluxbox | |||
40 | if XFT | 40 | if XFT |
41 | xft_SOURCE= XftFontImp.hh XftFontImp.cc | 41 | xft_SOURCE= XftFontImp.hh XftFontImp.cc |
42 | endif | 42 | endif |
43 | if NEWWMSPEC | ||
44 | newwmspec_SOURCE= Ewmh.hh Ewmh.cc | ||
45 | endif | ||
46 | if GNOME | ||
47 | gnome_SOURCE= Gnome.hh Gnome.cc | ||
48 | endif | ||
49 | if MULTIBYTE | ||
50 | xmb_SOURCE= XmbFontImp.hh XmbFontImp.cc | ||
51 | endif | ||
43 | 52 | ||
44 | fluxbox_SOURCES = BaseDisplay.cc BaseDisplay.hh Basemenu.cc Basemenu.hh \ | 53 | fluxbox_SOURCES = BaseDisplay.cc BaseDisplay.hh Basemenu.cc Basemenu.hh \ |
45 | Clientmenu.cc Clientmenu.hh Configmenu.cc Configmenu.hh \ | 54 | Clientmenu.cc Clientmenu.hh Configmenu.cc Configmenu.hh \ |
46 | Icon.cc Icon.hh Image.cc Image.hh \ | 55 | Iconmenu.cc Iconmenu.hh Image.cc Image.hh \ |
47 | Netizen.cc Netizen.hh Rootmenu.cc Rootmenu.hh Screen.cc Screen.hh\ | 56 | Netizen.cc Netizen.hh Rootmenu.cc Rootmenu.hh Screen.cc Screen.hh\ |
48 | Slit.cc Slit.hh Timer.cc Timer.hh Toolbar.cc Toolbar.hh \ | 57 | Slit.cc Slit.hh Timer.cc Timer.hh Toolbar.cc Toolbar.hh \ |
49 | Window.cc Window.hh Windowmenu.cc Windowmenu.hh \ | 58 | Window.cc Window.hh Windowmenu.cc Windowmenu.hh \ |
@@ -53,8 +62,9 @@ fluxbox_SOURCES = BaseDisplay.cc BaseDisplay.hh Basemenu.cc Basemenu.hh \ | |||
53 | IconBar.cc IconBar.hh Theme.hh Theme.cc \ | 62 | IconBar.cc IconBar.hh Theme.hh Theme.cc \ |
54 | StringUtil.cc StringUtil.hh DrawUtil.cc DrawUtil.hh nl_types_cygnus.h \ | 63 | StringUtil.cc StringUtil.hh DrawUtil.cc DrawUtil.hh nl_types_cygnus.h \ |
55 | XrmDatabaseHelper.hh NotCopyable.hh Resource.hh Resource.cc \ | 64 | XrmDatabaseHelper.hh NotCopyable.hh Resource.hh Resource.cc \ |
56 | Font.hh Font.cc FontImp.hh XFontImp.hh XFontImp.cc XmbFontImp.hh XmbFontImp.cc \ | 65 | Font.hh Font.cc FontImp.hh XFontImp.hh XFontImp.cc \ |
57 | FbAtoms.hh FbAtoms.cc Color.hh Color.cc Texture.hh Texture.cc \ | 66 | FbAtoms.hh FbAtoms.cc Color.hh Color.cc Texture.hh Texture.cc \ |
58 | SignalHandler.hh SignalHandler.cc \ | 67 | SignalHandler.hh SignalHandler.cc \ |
59 | EventHandler.hh AtomHandler.hh Gnome.hh Gnome.cc Ewmh.hh Ewmh.cc \ | 68 | EventHandler.hh AtomHandler.hh \ |
60 | Observer.hh Observer.cc Subject.hh Subject.cc ${xft_SOURCE} | 69 | Observer.hh Observer.cc Subject.hh Subject.cc \ |
70 | ${xft_SOURCE} ${gnome_SOURCE} ${newwmspec_SOURCE} ${xmb_SOURCE} | ||