1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
## Makefile.am -- Process this file with automake to produce Makefile.in
## Copyright (C) 2002 James Su
##
## This program is free software; you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation; either version 2, or (at your option)
## any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program; if not, write to the Free Software
## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
MAINTAINERCLEANFILES = Makefile.in
INCLUDES = -I$(top_builddir) \
-I$(top_builddir)/src \
-I$(top_srcdir) \
-I$(top_srcdir)/src \
-I$(top_srcdir)/intl \
-I$(top_srcdir)/data \
-I$(top_srcdir)/utils
if SCIM_BUILD_TRAY_ICON
TRAY_ICON_HEADER=scimtrayicon.h
TRAY_ICON_SOURCE=scimtrayicon.c
endif
if SCIM_BUILD_X11_UTILS
libscimx11utilsincludedir = $(includedir)/scim@SCIM_EPOCH@/x11
libscimx11utilsinclude_HEADERS = scim_x11_utils.h
X11_UTILS = libscim-x11utils@SCIM_EPOCH@.la
endif
if SCIM_BUILD_GTK_UTILS
libscimgtkutilsincludedir = $(includedir)/scim@SCIM_EPOCH@/gtk
libscimgtkutilsinclude_HEADERS = scimstringview.h scimkeyselection.h $(TRAY_ICON_HEADER)
GTK_UTILS = libscim-gtkutils@SCIM_EPOCH@.la
endif
lib_LTLIBRARIES = $(X11_UTILS) $(GTK_UTILS)
libscim_gtkutils@SCIM_EPOCH@_la_SOURCES = scimstringview.c \
scimkeyselection.cpp \
$(TRAY_ICON_SOURCE)
libscim_gtkutils@SCIM_EPOCH@_la_CFLAGS = @GTK2_CFLAGS@
libscim_gtkutils@SCIM_EPOCH@_la_CXXFLAGS= @GTK2_CFLAGS@
libscim_gtkutils@SCIM_EPOCH@_la_LDFLAGS= -version-info $(SCIM_CURRENT):$(SCIM_REVISION):$(SCIM_AGE) \
-export-dynamic \
-rpath $(libdir) \
@LIBTOOL_EXPORT_OPTIONS@ \
@LTLIBINTL@ \
@GTK2_LIBS@
libscim_gtkutils@SCIM_EPOCH@_la_LIBADD= $(top_builddir)/src/libscim@SCIM_EPOCH@.la $(X11_UTILS)
libscim_x11utils@SCIM_EPOCH@_la_SOURCES = scim_x11_utils.cpp
libscim_x11utils@SCIM_EPOCH@_la_CFLAGS= @X_CFLAGS@
libscim_x11utils@SCIM_EPOCH@_la_CXXFLAGS= @X_CFLAGS@
libscim_x11utils@SCIM_EPOCH@_la_LDFLAGS= -version-info $(SCIM_CURRENT):$(SCIM_REVISION):$(SCIM_AGE) \
-export-dynamic \
-rpath $(libdir) \
@LIBTOOL_EXPORT_OPTIONS@ \
@LTLIBINTL@ \
@X_LIBS@
libscim_x11utils@SCIM_EPOCH@_la_LIBAD = $(top_builddir)/src/libscim@SCIM_EPOCH@.la
|