Newer
Older
scim-wnn / honoka / src / Makefile.am
@tamra tamra on 17 Sep 2005 2 KB 逐次変換のPredictor化。
  1. ## Makefile.am -- Process this file with automake to produce Makefile.in
  2. ## Copyright (C) 2002 James Su
  3. ##
  4. ## This program is free software; you can redistribute it and/or modify
  5. ## it under the terms of the GNU General Public License as published by
  6. ## the Free Software Foundation; either version 2, or (at your option)
  7. ## any later version.
  8. ##
  9. ## This program is distributed in the hope that it will be useful,
  10. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. ## GNU General Public License for more details.
  13. ##
  14. ## You should have received a copy of the GNU General Public License
  15. ## along with this program; if not, write to the Free Software
  16. ## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. MAINTAINERCLEANFILES = Makefile.in
  19.  
  20. INCLUDES = -I$(top_builddir) \
  21. -I$(top_srcdir) \
  22. -I$(top_srcdir)/libhonoka \
  23. -DSCIM_ICONDIR=\"@SCIM_ICONDIR@\" \
  24. -DHONOKA_LOCALEDIR=\"$(datadir)/locale\" \
  25. -DHONOKA_DATADIR=\"@SCIM_DATADIR@/honoka\" \
  26. -DHONOKA_ICON_FILE=\"@SCIM_ICONDIR@/honoka.png\" \
  27. -DHONOKA_PLUGINDIR=\"@SCIM_MODULEDIR@/honoka\"
  28.  
  29. noinst_HEADERS = honoka_imengine.h multiconvertor.h honoka_def.h \
  30. honokasetupgtk.h acpredictor.h
  31.  
  32. moduledir = @SCIM_MODULEDIR@/IMEngine
  33. module_LTLIBRARIES = honoka.la
  34.  
  35. honoka_la_SOURCES = honoka_imengine.cpp multiconvertor.cpp acpredictor.cpp
  36.  
  37. honoka_la_CFLAGS = @SCIM_CFLAGS@ @SCIM_DEBUG_FLAGS@
  38. honoka_la_CXXFLAGS = @SCIM_CFLAGS@ @SCIM_DEBUG_FLAGS@
  39.  
  40. honoka_la_LDFLAGS = -avoid-version -module -rpath $(moduledir) \
  41. @LIBTOOL_EXPORT_OPTIONS@ @INTLLIBS@ @SCIM_LIBS@
  42. honoka_la_LIBADD = $(top_builddir)/libhonoka/libhonoka_plugin.la
  43.  
  44.  
  45. if SCIM_BUILD_SETUP
  46. SETUP_MODULE = honoka-imengine-setup.la
  47. endif
  48.  
  49. setupmoduledir = @SCIM_MODULEDIR@/SetupUI
  50. setupmodule_LTLIBRARIES = $(SETUP_MODULE)
  51.  
  52. honoka_imengine_setup_la_SOURCES = honoka_imengine_setup.cpp honokasetupgtk.cpp
  53.  
  54. honoka_imengine_setup_la_CFLAGS = @SCIM_GTKUTILS_CFLAGS@ @SCIM_CFLAGS@ @SCIM_DEBUG_FLAGS@
  55.  
  56. honoka_imengine_setup_la_CXXFLAGS= @SCIM_GTKUTILS_CFLAGS@ @SCIM_CFLAGS@ @SCIM_DEBUG_FLAGS@
  57.  
  58. honoka_imengine_setup_la_LDFLAGS = -avoid-version \
  59. -rpath $(setupmoduledir) \
  60. -module \
  61. @LIBTOOL_EXPORT_OPTIONS@ \
  62. @SCIM_GTKUTILS_LIBS@ \
  63. @INTLLIBS@ \
  64. @SCIM_LIBS@
  65.  
  66.