diff options
Diffstat (limited to 'src/FbTk/Makefile.am')
-rw-r--r-- | src/FbTk/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/FbTk/Makefile.am b/src/FbTk/Makefile.am new file mode 100644 index 0000000..8ec4cef --- /dev/null +++ b/src/FbTk/Makefile.am | |||
@@ -0,0 +1,14 @@ | |||
1 | lib_LTLIBRARIES = libFbTk.la | ||
2 | |||
3 | if XFT | ||
4 | xft_SOURCE= XftFontImp.hh XftFontImp.cc | ||
5 | endif | ||
6 | if MULTIBYTE | ||
7 | xmb_SOURCE= XmbFontImp.hh XmbFontImp.cc | ||
8 | endif | ||
9 | |||
10 | libFbTk_la_SOURCES = App.hh App.cc Color.cc Color.hh EventHandler.hh Font.cc Font.hh FontImp.hh NotCopyable.hh \ | ||
11 | SignalHandler.cc SignalHandler.hh Texture.cc Texture.hh \ | ||
12 | XFontImp.cc XFontImp.hh \ | ||
13 | ${xft_SOURCE} \ | ||
14 | ${xmb_SOURCE} | ||