diff options
author | Brent Hull <[email protected]> | 2013-01-25 02:39:32 -0500 |
---|---|---|
committer | Brent Hull <[email protected]> | 2013-01-25 02:39:32 -0500 |
commit | 1acc3477eeb71505d68b66ac7aa4a796f86fe69c (patch) | |
tree | c4c7950e24d8393980b41c6bd649c450e628a6f2 /mate-dictionary/src/Makefile.am | |
parent | 3f783bbd74e1f94e97f91829480b32b05b6480c8 (diff) | |
download | mate-utils-1acc3477eeb71505d68b66ac7aa4a796f86fe69c.tar.bz2 mate-utils-1acc3477eeb71505d68b66ac7aa4a796f86fe69c.tar.xz |
Port mate-dictionary (and applet) to Gsettings (main program based on GNOME patch)
Diffstat (limited to 'mate-dictionary/src/Makefile.am')
-rw-r--r-- | mate-dictionary/src/Makefile.am | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/mate-dictionary/src/Makefile.am b/mate-dictionary/src/Makefile.am index ddde3d26..57242f06 100644 --- a/mate-dictionary/src/Makefile.am +++ b/mate-dictionary/src/Makefile.am @@ -35,15 +35,21 @@ mate_dictionary_SOURCES = \ gdict-window.h \ main.c \ $(NULL) + mate_dictionary_CFLAGS = \ -I$(top_builddir)/mate-dictionary \ -I$(top_srcdir)/mate-dictionary \ - $(MATE_UTILS_CFLAGS) \ + $(GLIB_CFLAGS) \ + $(GIO_CFLAGS) \ + $(GTK_CFLAGS) \ $(NULL) + mate_dictionary_LDADD = \ -lm \ $(top_builddir)/mate-dictionary/libgdict/libmatedict.la \ - $(MATE_UTILS_LIBS) \ + $(GLIB_LIBS) \ + $(GIO_LIBS) \ + $(GTK_LIBS) \ $(NULL) if BUILD_GDICT_APPLET @@ -66,17 +72,23 @@ mate_dictionary_applet_SOURCES = \ gdict-source-dialog.c \ gdict-source-dialog.h \ $(NULL) + mate_dictionary_applet_CFLAGS = \ -I$(top_builddir)/mate-dictionary \ -I$(top_srcdir)/mate-dictionary \ - $(MATE_UTILS_CFLAGS) \ $(APPLET_CFLAGS) \ + $(GLIB_CFLAGS) \ + $(GIO_CFLAGS) \ + $(GTK_CFLAGS) \ $(NULL) + mate_dictionary_applet_LDADD = \ -lm \ $(top_builddir)/mate-dictionary/libgdict/libmatedict.la \ - $(MATE_UTILS_LIBS) \ $(APPLET_LIBS) \ + $(GLIB_LIBS) \ + $(GIO_LIBS) \ + $(GTK_LIBS) \ $(NULL) endif # BUILD_GDICT_APPLET |