diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-12-28 03:10:15 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-12-28 03:32:39 +0800 |
commit | 59bd81691def7f7f8c0ead2edaacd374b6791067 (patch) | |
tree | e09951e7f35561f573fc56a50f42c706ac25aae5 /addressbook/printing | |
parent | 6a074300e533a82fb1a09b470724e54b155f8cd5 (diff) | |
download | gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.tar gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.tar.gz gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.tar.bz2 gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.tar.lz gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.tar.xz gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.tar.zst gsoc2013-evolution-59bd81691def7f7f8c0ead2edaacd374b6791067.zip |
Compiler and linker flag cleanups.
Diffstat (limited to 'addressbook/printing')
-rw-r--r-- | addressbook/printing/Makefile.am | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/addressbook/printing/Makefile.am b/addressbook/printing/Makefile.am index 217a4288fb..04b72bfa4a 100644 --- a/addressbook/printing/Makefile.am +++ b/addressbook/printing/Makefile.am @@ -9,8 +9,9 @@ libecontactprint_la_CPPFLAGS = \ -DG_LOG_DOMAIN=\"addressbook-printing\" \ -I$(top_srcdir)/addressbook \ -I$(top_srcdir) \ - -DEVOLUTION_UIDIR=\""$(uidir)"\" \ + -DEVOLUTION_UIDIR=\""$(uidir)"\" \ -DEVOLUTION_ECPSDIR=\""$(ecpsdir)"\" \ + $(GNOME_PLATFORM_CFLAGS) \ $(EVOLUTION_ADDRESSBOOK_CFLAGS) noinst_LTLIBRARIES = libecontactprint.la @@ -22,7 +23,8 @@ libecontactprint_la_SOURCES = \ libecontactprint_la_LIBADD = \ $(top_builddir)/e-util/libeutil.la \ - $(top_builddir)/widgets/misc/libemiscwidgets.la + $(top_builddir)/widgets/misc/libemiscwidgets.la \ + $(GNOME_PLATFORM_LIBS) noinst_PROGRAMS = contact-print-test @@ -33,6 +35,7 @@ contact_print_test_CPPFLAGS = \ -I$(top_srcdir) \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ -DEVOLUTION_ECPSDIR=\""$(ecpsdir)"\" \ + $(GNOME_PLATFORM_CFLAGS) \ $(EVOLUTION_ADDRESSBOOK_CFLAGS) contact_print_test_SOURCES = test-print.c @@ -42,7 +45,8 @@ contact_print_test_LDADD = \ $(top_builddir)/addressbook/util/libeabutil.la \ $(top_builddir)/e-util/libeutil.la \ $(top_builddir)/shell/libeshell.la \ - $(EVOLUTION_ADDRESSBOOK_LIBS) + $(EVOLUTION_ADDRESSBOOK_LIBS) \ + $(GNOME_PLATFORM_LIBS) EXTRA_DIST = \ $(ecps_DATA) |