forked from AuroraMiddleware/gtk
42cc312df6
Thu May 3 14:13:49 2001 Owen Taylor <otaylor@redhat.com> * INSTALL.in HACKING gtk/gtkaccessible.[ch] gtk/gtk.c: Add dependency on Atk for accessibility support. * configure.in **/Makefile.am: Major reworking of substituted variables for CFLAGS/LIBS to make a lot more sane and keep the the compile/link lines a bit shorter. * gdk/x11/gdkkeys-x11.c: Fix #endif with trailing stuff.
64 lines
1.9 KiB
Makefile
64 lines
1.9 KiB
Makefile
## Makefile.am for gtk+/demos
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
-DGTK_DISABLE_COMPAT_H \
|
|
-DGTK_LOCALEDIR=\"$(gtklocaledir)\" \
|
|
@GTK_DEBUG_FLAGS@ \
|
|
@GTK_XIM_FLAGS@ \
|
|
@GTK_DEP_CFLAGS@ \
|
|
@STRIP_END@
|
|
|
|
DEPS = \
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-1.3.la \
|
|
$(top_builddir)/gdk/@gdktargetlib@ \
|
|
$(top_builddir)/gtk/@gtktargetlib@
|
|
|
|
LDADDS = @STRIP_BEGIN@ \
|
|
$(top_builddir)/gdk-pixbuf/libgdk_pixbuf-1.3.la \
|
|
$(top_builddir)/gdk/@gdktargetlib@ \
|
|
$(top_builddir)/gtk/@gtktargetlib@ \
|
|
@GTK_DEP_LIBS@ \
|
|
@STRIP_END@
|
|
|
|
moduledir = $(libdir)/gtk-2.0/$(GTK_VERSION)/immodules
|
|
|
|
im_xim_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module
|
|
im_xim_la_SOURCES = \
|
|
gtkimcontextxim.c \
|
|
gtkimcontextxim.h \
|
|
imxim.c
|
|
if USE_X11
|
|
IM_XIM_MODULE=im-xim.la
|
|
endif
|
|
|
|
im_cyrillic_translit_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module
|
|
im_cyrillic_translit_la_SOURCES = imcyrillic-translit.c
|
|
|
|
im_thai_broken_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module
|
|
im_thai_broken_la_SOURCES = imthai-broken.c
|
|
|
|
im_viqr_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module
|
|
im_viqr_la_SOURCES = imviqr.c
|
|
|
|
im_inuktitut_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module
|
|
im_inuktitut_la_SOURCES = iminuktitut.c
|
|
|
|
im_ipa_la_LDFLAGS = -rpath $(moduledir) -avoid-version -module
|
|
im_ipa_la_SOURCES = imipa.c
|
|
|
|
# We create a dummy theme for the default GTK+ theme
|
|
install-data-local:
|
|
$(mkinstalldirs) $(DESTDIR)$(sysconfdir)/gtk-2.0
|
|
$(top_builddir)/gtk/gtk-query-immodules-2.0 > $(DESTDIR)$(sysconfdir)/gtk-2.0/gtk.immodules
|
|
|
|
module_LTLIBRARIES = im-cyrillic-translit.la $(IM_XIM_MODULE) im-viqr.la im-thai-broken.la \
|
|
im-inuktitut.la im-ipa.la
|
|
|
|
gtk.immodules: Makefile.am $(module_LTLIBRARIES)
|
|
$(top_builddir)/gtk/gtk-query-immodules-2.0 .libs/*.so > gtk.immodules
|
|
|
|
all-local: gtk.immodules
|