diff options
author | Ted Gould <ted@canonical.com> | 2009-10-05 10:12:45 -0400 |
---|---|---|
committer | Ted Gould <ted@canonical.com> | 2009-10-05 10:12:45 -0400 |
commit | 3f56fb5dd3989a6926d6285345df8d71f9053924 (patch) | |
tree | 7746e0c915942b21e4be1186f10ae5c8b6c5f067 /tools | |
parent | 2b1220bd8455a79ff0f3da340cf9337c159d1720 (diff) | |
download | libdbusmenu-3f56fb5dd3989a6926d6285345df8d71f9053924.tar.gz libdbusmenu-3f56fb5dd3989a6926d6285345df8d71f9053924.tar.bz2 libdbusmenu-3f56fb5dd3989a6926d6285345df8d71f9053924.zip |
A stub dbusmenu dumper
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 13 | ||||
-rw-r--r-- | tools/dbusmenu-dumper.c | 8 |
2 files changed, 20 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 7299564..415050f 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,3 +1,14 @@ -# Stuff will go here. +libexec_PROGRAMS = dbusmenu-dumper + +dbusmenu_dumper_SOURCES = \ + dbusmenu-dumper.c + +dbusmenu_dumper_CFLAGS = \ + -I $(srcdir)/.. \ + $(DBUSMENUGLIB_CFLAGS) -Wall -Werror + +dbusmenu_dumper_LDADD = \ + ../libdbusmenu-glib/libdbusmenu-glib.la \ + $(DBUSMENUGLIB_LIBS) diff --git a/tools/dbusmenu-dumper.c b/tools/dbusmenu-dumper.c new file mode 100644 index 0000000..0382609 --- /dev/null +++ b/tools/dbusmenu-dumper.c @@ -0,0 +1,8 @@ + +int +main (int argc, char ** argv) +{ + + return 0; +} + |