diff options
author | Cody Russell <crussell@canonical.com> | 2010-01-19 16:02:50 -0600 |
---|---|---|
committer | Cody Russell <crussell@canonical.com> | 2010-01-19 16:02:50 -0600 |
commit | ebb7b05f5a94c0974894f41991af3185f2560598 (patch) | |
tree | b8bd5cc86d9eaa8e486a9aa0eca09aa985b84857 /example/Makefile.am | |
download | ayatana-ido-ebb7b05f5a94c0974894f41991af3185f2560598.tar.gz ayatana-ido-ebb7b05f5a94c0974894f41991af3185f2560598.tar.bz2 ayatana-ido-ebb7b05f5a94c0974894f41991af3185f2560598.zip |
IDO initial commit, scale menuitem
Diffstat (limited to 'example/Makefile.am')
-rw-r--r-- | example/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/example/Makefile.am b/example/Makefile.am new file mode 100644 index 0000000..c7f9c15 --- /dev/null +++ b/example/Makefile.am @@ -0,0 +1,16 @@ +noinst_PROGRAMS = \ + menus + +menus_SOURCES = \ + menus.c + +menus_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/src \ + -I$(top_builddir)/src \ + $(GCC_FLAGS) \ + $(GTK_CFLAGS) \ + $(MAINTAINER_CFLAGS) + +menus_LDADD = $(top_builddir)/src/libido-0.1.la + |