diff options
author | Cody Russell <crussell@canonical.com> | 2010-05-12 23:21:36 +0200 |
---|---|---|
committer | Cody Russell <crussell@canonical.com> | 2010-05-12 23:21:36 +0200 |
commit | a544da2cdf98dc1763a84626e13a1e2e5da98e83 (patch) | |
tree | e4a14450676f6e6bebaba97b2c53fbbac32adeb2 /example/Makefile.am | |
parent | ac894c8ff8c842a8911fbae7998789ada1a080e6 (diff) | |
download | ayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.tar.gz ayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.tar.bz2 ayatana-ido-a544da2cdf98dc1763a84626e13a1e2e5da98e83.zip |
IdoMessageDialog - a morphing message dialog.
Diffstat (limited to 'example/Makefile.am')
-rw-r--r-- | example/Makefile.am | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/example/Makefile.am b/example/Makefile.am index c7f9c15..bd96642 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -1,9 +1,21 @@ noinst_PROGRAMS = \ + messagedialog \ menus +messagedialog_SOURCES = \ + messagedialog.c + menus_SOURCES = \ menus.c +messagedialog_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/src \ + -I$(top_builddir)/src \ + $(GCC_FLAGS) \ + $(GTK_CFLAGS) \ + $(MAINTAINER_CFLAGS) + menus_CPPFLAGS = \ -I$(top_srcdir) \ -I$(top_srcdir)/src \ @@ -12,5 +24,6 @@ menus_CPPFLAGS = \ $(GTK_CFLAGS) \ $(MAINTAINER_CFLAGS) -menus_LDADD = $(top_builddir)/src/libido-0.1.la +messagedialog_LDADD = $(top_builddir)/src/libido-0.1.la +menus_LDADD = $(top_builddir)/src/libido-0.1.la |