diff options
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; +} + |